GPS Coordinates (Latitude, Longitude) Instructions:

  1. Fill out the form above as best as you can (Name, Address 1, City, State, Zipcode, Country)
  2. Click this link to search for your address on Google Maps. Google Maps will be opened in a new browser tab
  3. Collect GPS Coordinates (Latitude, Longitude):
    1. Right click the address's Google Maps Marker
    2. Click "What's here?"
    3. A card will appear below
    4. Copy the latitude/longitude (ie "41.996617, -87.884485") from the card
      • NOTE: This text is contained within a LINK, so you will need to drag your mouse from OUTSIDE the link in order to select the text.
    5. Paste the latitude/longitude in each corresponding field below
    6. Preview the resulting map marker location and confirm it is correct
{!! Form::label('name', 'Name *') !!} {!! Form::text('name', null, ['class'=>'form-control']) !!}
{!! Form::label('url', 'URL') !!} {!! Form::url('url', null, ['class'=>'form-control']) !!}
{!! Form::label('category_id', 'Category *') !!} {!! Form::select('category_id', $category_options, null, ['class'=>'form-control']) !!}
{!! Form::label('is_active', 'Active?') !!} {!! Form::select('is_active', [1 => 'Active', 0 => 'Inactive'], null, ['class'=>'form-control']) !!}
{!! Form::label('address1', 'Address 1 *') !!} {!! Form::text('address1', null, ['class'=>'form-control']) !!}
{!! Form::label('address2', 'Address 2') !!} {!! Form::text('address2', null, ['class'=>'form-control']) !!}
{!! Form::label('city', 'City *') !!} {!! Form::text('city', isset($city) ? $city : null, ['class'=>'form-control']) !!}
{!! Form::label('state_id', 'State *') !!} {!! Form::select('state_id', $state_options, isset($state_id) ? $state_id : null, ['class'=>'form-control select-two', 'placeholder'=>'Select a State...']) !!}
{!! Form::label('zipcode', 'Zipcode *') !!} {!! Form::text('zipcode', isset($zipcode) ? $zipcode : null, ['class'=>'zipcode-mask form-control']) !!}
{!! Form::label('latitude', 'Latitude *') !!} {!! Form::text('latitude', null, ['class'=>'form-control']) !!}
{!! Form::label('longitude', 'Longitude *') !!} {!! Form::text('longitude', null, ['class'=>'form-control']) !!}

Click here to preview the map marker location.

@if($taxonomies->count() > 0)