2013-11-25 79 views
0

我試圖找出如何以下對象使用谷歌的位置API轉換爲字符串的JavaScript /谷歌地圖:定位對象轉換爲字符串

initialLocation = new google.maps.LatLng(position.coords.latitude,position.coords.longitude); 

上面拉你的位置。但是,我無法想出一種方法來查看它是什麼作爲一個字符串,以便我可以使用它。當我發出警報時,我得到了未定義的信息,並且嘗試了通常的可疑屬性,但它們不顯示。我需要找出它是什麼,所以我可以把它送到方向服務,它需要「波士頓」或經緯度或類似的字符串輸入。

回答

0
Please refer the below link. 

http://jsfiddle.net/y829C/1/

Here you can enter zip code and get the latitude and longitude. 

var geocoder = new google.maps.Geocoder(); 
     geocoder.geocode({ 'address': addresscity }, function (results, status) { 
       if (status == google.maps.GeocoderStatus.OK) { 
        latitude = results[0].geometry.location.lat(); 
        longitude = results[0].geometry.location.lng(); 
       var myLatlng = new google.maps.LatLng(latitude, longitude); 
        var mapOptions = { 
       center: new google.maps.LatLng(latitude, longitude), 
        zoom: 8, 
       mapTypeId: google.maps.MapTypeId.ROADMAP 

    }; 
相關問題