Last active
August 3, 2020 06:05
-
-
Save typebrook/43ac7c182a8189c8561d2c97eaf2f4e2 to your computer and use it in GitHub Desktop.
Examples for My talk in Coscup 2020 #coscup2020 #map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <title>OpenStreetMap with Google Maps v3 API</title> | |
| <style type="text/css"> | |
| html, body, #map { | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="map"></div> | |
| <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=[YOUR-API-KEY]"></script> | |
| <script type="text/javascript"> | |
| var element = document.getElementById("map"); | |
| var map = new google.maps.Map(element, { | |
| center: new google.maps.LatLng(48.1391, 11.5802), | |
| zoom: 11 | |
| }); | |
| </script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <title>OpenStreetMap with Google Maps v3 API</title> | |
| <style type="text/css"> | |
| html, body, #map { | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="map"></div> | |
| <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script> | |
| <script type="text/javascript"> | |
| var element = document.getElementById("map"); | |
| /* | |
| Build list of map types. | |
| You can also use var mapTypeIds = ["roadmap", "satellite", "hybrid", "terrain", "OSM"] | |
| but static lists suck when Google updates the default list of map types. | |
| */ | |
| var mapTypeIds = []; | |
| for(var type in google.maps.MapTypeId) { | |
| mapTypeIds.push(google.maps.MapTypeId[type]); | |
| } | |
| mapTypeIds.push("OSM"); | |
| var map = new google.maps.Map(element, { | |
| center: new google.maps.LatLng(48.1391, 11.5802), | |
| zoom: 11, | |
| mapTypeId: "OSM", | |
| mapTypeControlOptions: { | |
| mapTypeIds: mapTypeIds | |
| } | |
| }); | |
| map.mapTypes.set("OSM", new google.maps.ImageMapType({ | |
| getTileUrl: function(coord, zoom) { | |
| // See above example if you need smooth wrapping at 180th meridian | |
| return "https://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png"; | |
| }, | |
| tileSize: new google.maps.Size(256, 256), | |
| name: "OpenStreetMap", | |
| maxZoom: 18 | |
| })); | |
| </script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Styled Map Types</title> | |
| <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> | |
| <meta charset="utf-8"> | |
| <style> | |
| /* Always set the map height explicitly to define the size of the div | |
| * element that contains the map. */ | |
| #map { | |
| height: 100%; | |
| } | |
| /* Optional: Makes the sample page fill the window. */ | |
| html, body { | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="map"></div> | |
| <script> | |
| function initMap() { | |
| // Create a new StyledMapType object, passing it an array of styles, | |
| // and the name to be displayed on the map type control. | |
| var styledMapType = new google.maps.StyledMapType( | |
| [ | |
| {elementType: 'geometry', stylers: [{color: '#ebe3cd'}]}, | |
| {elementType: 'labels.text.fill', stylers: [{color: '#523735'}]}, | |
| {elementType: 'labels.text.stroke', stylers: [{color: '#f5f1e6'}]}, | |
| { | |
| featureType: 'administrative', | |
| elementType: 'geometry.stroke', | |
| stylers: [{color: '#c9b2a6'}] | |
| }, | |
| { | |
| featureType: 'administrative.land_parcel', | |
| elementType: 'geometry.stroke', | |
| stylers: [{color: '#dcd2be'}] | |
| }, | |
| { | |
| featureType: 'administrative.land_parcel', | |
| elementType: 'labels.text.fill', | |
| stylers: [{color: '#ae9e90'}] | |
| }, | |
| { | |
| featureType: 'landscape.natural', | |
| elementType: 'geometry', | |
| stylers: [{color: '#dfd2ae'}] | |
| }, | |
| { | |
| featureType: 'poi', | |
| elementType: 'geometry', | |
| stylers: [{color: '#dfd2ae'}] | |
| }, | |
| { | |
| featureType: 'poi', | |
| elementType: 'labels.text.fill', | |
| stylers: [{color: '#93817c'}] | |
| }, | |
| { | |
| featureType: 'poi.park', | |
| elementType: 'geometry.fill', | |
| stylers: [{color: '#a5b076'}] | |
| }, | |
| { | |
| featureType: 'poi.park', | |
| elementType: 'labels.text.fill', | |
| stylers: [{color: '#447530'}] | |
| }, | |
| { | |
| featureType: 'road', | |
| elementType: 'geometry', | |
| stylers: [{color: '#f5f1e6'}] | |
| }, | |
| { | |
| featureType: 'road.arterial', | |
| elementType: 'geometry', | |
| stylers: [{color: '#fdfcf8'}] | |
| }, | |
| { | |
| featureType: 'road.highway', | |
| elementType: 'geometry', | |
| stylers: [{color: '#f8c967'}] | |
| }, | |
| { | |
| featureType: 'road.highway', | |
| elementType: 'geometry.stroke', | |
| stylers: [{color: '#e9bc62'}] | |
| }, | |
| { | |
| featureType: 'road.highway.controlled_access', | |
| elementType: 'geometry', | |
| stylers: [{color: '#e98d58'}] | |
| }, | |
| { | |
| featureType: 'road.highway.controlled_access', | |
| elementType: 'geometry.stroke', | |
| stylers: [{color: '#db8555'}] | |
| }, | |
| { | |
| featureType: 'road.local', | |
| elementType: 'labels.text.fill', | |
| stylers: [{color: '#806b63'}] | |
| }, | |
| { | |
| featureType: 'transit.line', | |
| elementType: 'geometry', | |
| stylers: [{color: '#dfd2ae'}] | |
| }, | |
| { | |
| featureType: 'transit.line', | |
| elementType: 'labels.text.fill', | |
| stylers: [{color: '#8f7d77'}] | |
| }, | |
| { | |
| featureType: 'transit.line', | |
| elementType: 'labels.text.stroke', | |
| stylers: [{color: '#ebe3cd'}] | |
| }, | |
| { | |
| featureType: 'transit.station', | |
| elementType: 'geometry', | |
| stylers: [{color: '#dfd2ae'}] | |
| }, | |
| { | |
| featureType: 'water', | |
| elementType: 'geometry.fill', | |
| stylers: [{color: '#b9d3c2'}] | |
| }, | |
| { | |
| featureType: 'water', | |
| elementType: 'labels.text.fill', | |
| stylers: [{color: '#92998d'}] | |
| } | |
| ], | |
| {name: 'Styled Map'}); | |
| // Create a map object, and include the MapTypeId to add | |
| // to the map type control. | |
| var map = new google.maps.Map(document.getElementById('map'), { | |
| center: {lat: 55.647, lng: 37.581}, | |
| zoom: 11, | |
| mapTypeControlOptions: { | |
| mapTypeIds: ['roadmap', 'satellite', 'hybrid', 'terrain', | |
| 'styled_map'] | |
| } | |
| }); | |
| //Associate the styled map with the MapTypeId and set it to display. | |
| map.mapTypes.set('styled_map', styledMapType); | |
| map.setMapTypeId('styled_map'); | |
| } | |
| </script> | |
| <script defer | |
| src="https://maps.googleapis.com/maps/api/js?key=[YOUR-API-KEY]&callback=initMap"> | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment