Skip to content

A Google Maps Places fieldtype for Statamic

License

Notifications You must be signed in to change notification settings

trendyminds/statamic-geocoder

Repository files navigation

Geocoder

Geocode your Statamic content using Google Maps Places autocomplete

Using the Places autocomplete to geolocate a location

How to Install

  1. Run the following command from your project root:
composer require trendyminds/statamic-geocoder
  1. Publish the config file and add your Google Maps API key to the added config within config/statamic/geocoder.php.
php artisan vendor:publish --tag=geocoder-config

Templating

When returning your geocoded data you'll have object properties for the selected location. For example if your selected place is:

White House, Pennsylvania Avenue Northwest, Washington, DC, USA

Your field object properties would like similar to this:

your_geo_field:
  name: 'The White House'
  place: 'White House, Pennsylvania Avenue Northwest, Washington, DC, USA'
  lat: 38.8976763
  lng: -77.0365298
  address: '1600 Pennsylvania Avenue NW'
  city: Washington
  state: DC
  zip: '20500'

And you can output the data as a standard Antlers object:

{{# Within a loop context #}}
{{ your_geo_field }}
  {{ name }}
  {{ place }}
  {{ lat }}
  {{ lng }}
{{ /your_geo_field }}

{{# As individual properties #}}
{{ your_geo_field:name }}
{{ your_geo_field:place }}
{{ your_geo_field:lat }}
{{ your_geo_field:lng }}

About

A Google Maps Places fieldtype for Statamic

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published