Ionic directive for a location dropdown that utilizes google maps
This is a simple directive for an autocomplete overlay location field built for Ionic Framework.
#Installation
Installation should be dead simple, you can grab a copy from bower:
bower install ion-google-place
Or clone this repository.
For the geolocation service to work, you'll need to have Google Maps javascript API somewhere in your HEAD tag:
<script src="http://maps.googleapis.com/maps/api/js?libraries=places&sensor=false"></script>
You'll need to add ion-google-place
as a dependency on your Ionic app:
angular.module('myApp', [
'ionic',
'ion-google-place'
]);
That's pretty much it. Now you can use the directive like so:
<ion-google-place placeholder="Enter an address, Apt# and ZIP" ng-model="location" />