zoukankan      html  css  js  c++  java
  • 如何在 Google 地图中添加标记和说明

    JS如下:

    (function() {

        window.onload = function() {

            // Creating an object literal containing the properties

            // we want to pass to the map

            var options = {

                zoom: 12,

                center: new google.maps.LatLng(40.7257, -74.0047),

                mapTypeId: google.maps.MapTypeId.ROADMAP

            };

            // Creating the map

            var map = new google.maps.Map(document.getElementById('map'), options);

            // Adding a marker to the map

            var marker = new google.maps.Marker({

                position: new google.maps.LatLng(40.7257, -74.0047),

                map: map,

                title: 'Click me',

                //icon: 'http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png'

            });

            

            var infowindow = new google.maps.InfoWindow({

            content:'<div class="info">Hello world</div>'

            });

            

            infowindow.open(map, marker);

            

            // Adding a click event to the marker

    /*        google.maps.event.addListener(marker, 'click', function() {

            // Calling the open method of the infoWindow

            infowindow.open(map, marker);

            });*/

        };

    })();

     

    CSS如下:

    body {

    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;

    font-size: small;

    background: #fff;

    }

    #map {

    width: 100%;

    height: 500px;

    border: 1px solid #000;

    }

    .info {

    width: 250px;

    }

     

    HTML如下:

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

    <title>My first map</title>

    <link type="text/css" href="css/style.css" rel="stylesheet" media="all" />

    <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>

    <script type="text/javascript" src="js/map.js"></script>

    </head>

    <body>

    <h1>My first map</h1>

    <div id="map"></div>

    </body>

    </html>

     

    效果如下:

  • 相关阅读:
    C#中如何只保留小数点后面两位?
    Int16 Int32 Int64
    移动端重构系列3——重置样式
    移动端重构系列2——整体布局(转载)
    移动端重构系列1——新建空白页面(转载)
    八种创建等高列布局(转载)
    一个完整的Flexbox指南(转载)
    等高列布局、水平垂直居中与置顶页脚(转载)
    Block formatting context & Inline formatting context(BFC&IFC)的区别(转载)
    [转载]网页动画的十二原则
  • 原文地址:https://www.cnblogs.com/my4piano/p/5326939.html
Copyright © 2011-2022 走看看