Blame view
examples/advanced_example.html
6.27 KB
dbaadcdd8 Signed-off-by: To... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
<!doctype html> <html> <head> <meta charset="utf-8"> <title>MarkerClusterer v3 Advanced Example</title> <style> body { margin: 0; padding: 10px 20px 20px; font-family: Arial; font-size: 16px; } #map-container { padding: 6px; border-width: 1px; border-style: solid; border-color: #ccc #ccc #999 #ccc; -webkit-box-shadow: rgba(64, 64, 64, 0.5) 0 2px 5px; -moz-box-shadow: rgba(64, 64, 64, 0.5) 0 2px 5px; box-shadow: rgba(64, 64, 64, 0.1) 0 2px 5px; width: 800px; } #map { width: 800px; height: 400px; } #actions { list-style: none; padding: 0; } #inline-actions { padding-top: 10px; } .item { margin-left: 20px; } </style> <script src="https://maps.googleapis.com/maps/api/js"></script> <script src="data.json"></script> <script> var script = '<script type="text/javascript" src="../src/markerclusterer'; if (document.location.search.indexOf('compiled') !== -1) { script += '_compiled'; } script += '.js"><' + '/script>'; document.write(script); </script> <script> var styles = [[{ url: '../images/people35.png', height: 35, width: 35, anchor: [16, 0], textColor: '#ff00ff', textSize: 10 }, { url: '../images/people45.png', height: 45, width: 45, anchor: [24, 0], textColor: '#ff0000', textSize: 11 }, { url: '../images/people55.png', height: 55, width: 55, anchor: [32, 0], textColor: '#ffffff', textSize: 12 }], [{ url: '../images/conv30.png', height: 27, width: 30, anchor: [3, 0], textColor: '#ff00ff', textSize: 10 }, { url: '../images/conv40.png', height: 36, width: 40, anchor: [6, 0], textColor: '#ff0000', textSize: 11 }, { url: '../images/conv50.png', width: 50, height: 45, anchor: [8, 0], textSize: 12 }], [{ url: '../images/heart30.png', height: 26, width: 30, anchor: [4, 0], textColor: '#ff00ff', textSize: 10 }, { url: '../images/heart40.png', height: 35, width: 40, anchor: [8, 0], textColor: '#ff0000', textSize: 11 }, { url: '../images/heart50.png', width: 50, height: 44, anchor: [12, 0], textSize: 12 }], [{ url: '../images/pin.png', height: 48, width: 30, anchor: [-18, 0], textColor: '#ffffff', textSize: 10, iconAnchor: [15, 48] }]]; var markerClusterer = null; var map = null; var imageUrl = 'http://chart.apis.google.com/chart?cht=mm&chs=24x32&' + 'chco=FFFFFF,008CFF,000000&ext=.png'; function refreshMap() { if (markerClusterer) { markerClusterer.clearMarkers(); } var markers = []; var markerImage = new google.maps.MarkerImage(imageUrl, new google.maps.Size(24, 32)); for (var i = 0; i < 1000; ++i) { var latLng = new google.maps.LatLng(data.photos[i].latitude, data.photos[i].longitude) var marker = new google.maps.Marker({ position: latLng, draggable: true, icon: markerImage }); markers.push(marker); } var zoom = parseInt(document.getElementById('zoom').value, 10); var size = parseInt(document.getElementById('size').value, 10); var style = parseInt(document.getElementById('style').value, 10); zoom = zoom === -1 ? null : zoom; size = size === -1 ? null : size; style = style === -1 ? null: style; markerClusterer = new MarkerClusterer(map, markers, { maxZoom: zoom, gridSize: size, styles: styles[style] }); } function initialize() { map = new google.maps.Map(document.getElementById('map'), { zoom: 2, center: new google.maps.LatLng(39.91, 116.38), mapTypeId: google.maps.MapTypeId.ROADMAP }); var refresh = document.getElementById('refresh'); google.maps.event.addDomListener(refresh, 'click', refreshMap); var clear = document.getElementById('clear'); google.maps.event.addDomListener(clear, 'click', clearClusters); refreshMap(); } function clearClusters(e) { e.preventDefault(); e.stopPropagation(); markerClusterer.clearMarkers(); } google.maps.event.addDomListener(window, 'load', initialize); </script> </head> <body> <h3>An example of MarkerClusterer v3</h3> <p> <a href="?compiled">Compiled</a> | <a href="?">Standard</a> version of the script. </p> <div id="map-container"> <div id="map"></div> </div> <div id="inline-actions"> <span>Max zoom level: <select id="zoom"> <option value="-1">Default</option> <option value="7">7</option> <option value="8">8</option> <option value="9">9</option> <option value="10">10</option> <option value="11">11</option> <option value="12">12</option> <option value="13">13</option> <option value="14">14</option> </select> </span> <span class="item">Cluster size: <select id="size"> <option value="-1">Default</option> <option value="40">40</option> <option value="50">50</option> <option value="70">70</option> <option value="80">80</option> </select> </span> <span class="item">Cluster style: <select id="style"> <option value="-1">Default</option> <option value="0">People</option> <option value="1">Conversation</option> <option value="2">Heart</option> <option value="3">Pin</option> </select> <input id="refresh" type="button" value="Refresh Map" class="item"/> <a href="#" id="clear">Clear</a> </div> </body> </html> |