开发者

Displaying a google map in google closure

开发者 https://www.devze.com 2023-04-08 14:40 出处:网络
How can I display a map i开发者_如何转开发n Google Closure. There seems to be many UI widgets but none for showing a mapI\'m confused. Since Google Closure is a javascript library, can\'t you just use

How can I display a map i开发者_如何转开发n Google Closure. There seems to be many UI widgets but none for showing a map


I'm confused. Since Google Closure is a javascript library, can't you just use the Google Maps Javascript API? Something like:

<script type="text/javascript" src="http://maps.googleapis.com/maps/ap/js?sensor=set_to_true_or_false">
</script>
<script type="text/javascript">
  function initialize() {
    var latlng = new google.maps.LatLng(-34.397, 150.644);
    var myOptions = {
       zoom: 8,
       center: latlng,
       mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
  }

And then you can just change the document.getElementById() to whatever you need.

Reference: Google Maps Javascript API

0

精彩评论

暂无评论...
验证码 换一张
取 消