作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试关注此页面:
http://melandri.net/2009/07/03/get-location-coordinates-using-google-maps/
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=<%=System.Web.Configuration.WebConfigurationManager.AppSettings["myGoogleKey"]%>&sensor=false"></script>
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
最佳答案
GClientGeocoder()
是版本2对象。您正在加载版本3 API,并且需要使用版本3对象和方法。
第3版的等效项是google.maps.Geocoder()
,并描述为in the documentation。它与版本2的实现不同。
关于api - 使用Google API-GClientGeocoder(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10213147/
我尝试关注此页面: http://melandri.net/2009/07/03/get-location-coordinates-using-google-maps/ 但未定义GClientGeoc
我是一名优秀的程序员,十分优秀!