Show us what you have done yourself and we can try and assist you when it 
goes wrong :)
Enjoy, John

On Sunday, 22 June 2014 12:16:20 UTC+3, Lo Lo wrote:
>
> i want change this simple google places API to a Helper ?would you help me?
>
>
> <!DOCTYPE html>
> <html>
>   <head>
>     <title>Place searches</title>
>     <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
>     <meta charset="utf-8">
>     <style>
>       html, body, #map-canvas {
>         height: 100%;
>         margin: 0px;
>         padding: 0px
>       }
>     </style>
>     <script src="
> https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places
> "></script>
>     <script>
> var map;
> var infowindow;
>
> function initialize() {
>   var pyrmont = new google.maps.LatLng(29.638531, 52.475412);
>
>   map = new google.maps.Map(document.getElementById('map-canvas'), {
>     center: pyrmont,
>     zoom: 15
>   });
>
>   var request = {
>     location: pyrmont,
>     radius: 5000,
>     types: ['parking']
>   };
>   infowindow = new google.maps.InfoWindow();
>   var service = new google.maps.places.PlacesService(map);
>   service.nearbySearch(request, callback);
> }
>
> function callback(results, status) {
>   if (status == google.maps.places.PlacesServiceStatus.OK) {
>     for (var i = 0; i < results.length; i++) {
>       createMarker(results[i]);
>     }
>   }
> }
>
> function createMarker(place) {
>   var placeLoc = place.geometry.location;
>   var marker = new google.maps.Marker({
>     map: map,
>     position: place.geometry.location
>   });
>
>   google.maps.event.addListener(marker, 'click', function() {
>     infowindow.setContent(place.name);
>     infowindow.open(map, this);
>   });
> }
>
> google.maps.event.addDomListener(window, 'load', initialize);
>
>     </script>
>   </head>
>   <body>
>     <div id="map-canvas"></div>
>   </body>
> </html>
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.

Reply via email to