how to get phone number using google api
-
this is my code function show(placelanlat,names) { var placenames=names; var planlat=placelanlat; var newStr= planlat.replace(/[(\)]/g,''); var aCars = newStr.split(','); var infowindow = new google.maps.InfoWindow(); var marker; var geocoder = new google.maps.Geocoder(); var latlng = new google.maps.LatLng(12.588,-83.667); var myOptions = { zoom: 8, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById("map_canvass"), myOptions); var input = newStr; var latlngStr = input.split(",",2); var lat = parseFloat(latlngStr[0]); var lng = parseFloat(latlngStr[1]); var latlng = new google.maps.LatLng(lat, lng); geocoder.geocode({'latLng': latlng}, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { if (results[1]) { map.setZoom(11); marker = new google.maps.Marker({ position: latlng, map: map, icon: 'images/images.png' }); infowindow.setContent(placenames+"</br>"+results[0].formatted_address+"</br>"); infowindow.open(map, marker); } } else { alert("Geocoder failed due to: " + status); } }); return false; // MANDATORY! } if i set infowindow.setContent(placenames+"</br>" +results[0].formatted_address +"</br>"+results[0].formatted_phone); results[0].formatted_phone -> this is showing empty.why? where i want to change to get place phone number. example:http://www.google.com/maps?source=uds&daddr=India,++%28India%[email protected],78.96288&saddr=37.781287,-122.395575
-
Answer:
if you use http://code.google.com/apis/maps/documentation/places/ then follow these steps first get an API key now use Place Search Requests A Place Search request is an HTTP URL of the following form: https://maps.googleapis.com/maps/api/place/search/output?parameters Certain parameters are required to initiate a Place Search request key (required) – Your application's API key. location (required) – This must be specified as latitude,longitude. radius (required) – The distance (in meters) within which to return Place results. sensor (required) – This value must be either true or false. Each result within the results array may contain reference contains a unique token that you can use to retrieve additional information about this place in a Place Details request. You can store this token and use it at any time in future to refresh cached data about this Place, but the same token is not guaranteed to be returned for any given Place across different searches. Once you have a reference from a Place Search request, you can request more details about a particular establishment or point of interest by initiating a Place Details request. A Place Details request returns more comprehensive information about the indicated place such as its complete address, phone number, user rating, etc. A Place Details request is an HTTP URL of the following form: https://maps.googleapis.com/maps/api/place/details/output?parameters Certain parameters are required to initiate a search request. key (required) – Your application's API key. reference (required) – A textual identifier that uniquely identifies a place, returned from a Place search request. sensor (required) – This value must be either true or false. output of Place Details contains formatted_phone_number and international_phone_number. Hope it would helps u.
SANR1103219 at Stack Overflow Visit the source
Related Q & A:
- How to get line number from .NET pdb?Best solution by Stack Overflow
- How to get specific number in XPATH?Best solution by Stack Overflow
- How to get the file using it's URL in Javascript?Best solution by befused.com
- How to open file using Google drive api?Best solution by Stack Overflow
- What the phone number for Google Adwords?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.