码迷,mamicode.com
首页 > 其他好文 > 详细

Google地图实现

时间:2015-09-30 13:05:02      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

API地址:https://developers.google.com/maps/documentation/javascript/tutorial

 <div id="map" style="width:600px;height:400px;border:1px solid red;"></div>
  <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
    <script type="text/javascript">
        window.onload = function () {
            var geocoder = new google.maps.Geocoder();//创建地址解析器
            var address = ‘陕西西安高新一路5号‘;

            geocoder.geocode({ ‘address‘: address }, function (results, status) {
                if (status == google.maps.GeocoderStatus.OK) {
                    var lo = results[0].geometry.location;
                    var myLatLng = { lat: lo.H, lng: lo.L };
                    //创建地图
                    var map = new google.maps.Map(document.getElementById(‘map‘), {
                        center: myLatLng,
                        zoom: 16
                    });
                    //创建标记
                    var marker = new google.maps.Marker({
                        position: myLatLng,
                        map: map,
                        title: address
                    });
                } else {
                    alert("解析失败: " + status);
                }
            });
        }
    </script>

 

Google地图实现

标签:

原文地址:http://www.cnblogs.com/talentzemin/p/4848700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!