zoukankan      html  css  js  c++  java
  • google map

        <script src="http://ditu.google.cn/maps/api/js?sensor=false"></script>
      function initialize() {
                var myLatlng = new google.maps.LatLng( $("#lanlat").val().split(',')[0],$("#lanlat").val().split(',')[1]);
                var myOptions = {
                    zoom: 13,
                    center: myLatlng,
                    mapTypeId: google.maps.MapTypeId.ROADMAP
                }
                var map = new google.maps.Map(document.getElementById("maps"), myOptions);
            }
            google.maps.event.addDomListener(window, "load", initialize);
          
          

  • 相关阅读:
    模板
    洛谷
    Codeforces
    Codeforces
    Codeforces
    Codeforces
    洛谷
    洛谷
    洛谷
    NOIP 普及组 2016 海港
  • 原文地址:https://www.cnblogs.com/cunfu/p/5036453.html
Copyright © 2011-2022 走看看