javascript / google maps:将location对象转换为字符串

时间:2013-11-25 04:02:54

标签: javascript google-maps

我试图找出如何将以下对象转换为使用google location api转换为字符串

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

上面提取您的位置。但是,我无法找到一种方法来查看字符串是什么,以便我可以使用它。当我提醒它时,我得到了未定义,我尝试了通常的可疑属性,但它们没有显示。我需要找出它是什么,所以我可以将它输入到“波士顿”或拉特隆或类似字符串输入的路线服务中。

1 个答案:

答案 0 :(得分: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

  };