33 lines
978 B
HTML
33 lines
978 B
HTML
<html>
|
|
<head>
|
|
<title>Google Custom Styles // Leaflet</title>
|
|
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
|
|
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
|
|
<script src="http://maps.google.com/maps/api/js?v=3&sensor=false"></script>
|
|
<script src="../layer/tile/Google.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- define a DIV into which the map will appear. Make it take up the whole window -->
|
|
<div style="width:100%; height:100%" id="map"></div>
|
|
<script type='text/javascript'>
|
|
var map = new L.Map('map', {center: new L.LatLng(53.9618, 58.4277), zoom: 13});
|
|
var osm = new L.TileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png');
|
|
|
|
var styles = [
|
|
{
|
|
featureType: 'all',
|
|
stylers: [{hue: '#ff0000'}]
|
|
}
|
|
];
|
|
|
|
var ggl = new L.Google('ROADMAP', {
|
|
mapOptions: {
|
|
styles: styles
|
|
}
|
|
});
|
|
map.addLayer(ggl);
|
|
map.addControl(new L.Control.Layers( {'OSM':osm, 'Google':ggl}, {}));
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|