You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.7 KiB
138 lines
4.7 KiB
<!DOCTYPE html> |
|
<!-- |
|
Copyright 2020 Google LLC |
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); |
|
you may not use this file except in compliance with the License. |
|
You may obtain a copy of the License at |
|
|
|
http://www.apache.org/licenses/LICENSE-2.0 |
|
|
|
Unless required by applicable law or agreed to in writing, software |
|
distributed under the License is distributed on an "AS IS" BASIS, |
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
See the License for the specific language governing permissions and |
|
limitations under the License. |
|
--> |
|
|
|
<html> |
|
<head> |
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> |
|
<title>Lettered Marker</title> |
|
<style type="text/css"> |
|
.labels { |
|
color: white; |
|
background-color: #ea4335; |
|
font-family: Roboto, Arial, sans-serif; |
|
font-size: 10px; |
|
text-align: center; |
|
width: 10px; |
|
white-space: nowrap; |
|
} |
|
</style> |
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.js"></script> |
|
<script src="https://maps.googleapis.com/maps/api/js"></script> |
|
<script src="https://gitea.cleverroute.net/hussam/map-for-cleverroute/raw/branch/main/dist/index.dev.js"></script> |
|
|
|
<!-- <script src="../dist/index.dev.js"></script> --> |
|
<script> |
|
var marker; |
|
|
|
// var request = new XMLHttpRequest(); |
|
// request.open('GET', './Mouse-Over Yaml.yaml', true); |
|
// request.responseType = 'blob'; |
|
// request.onload = function() { |
|
// var reader = new FileReader(); |
|
// reader.readAsDataURL(request.response); |
|
// reader.onload = function(e){ |
|
// console.log('DataURL:', e.target.result); |
|
// }; |
|
// }; |
|
// request.send(); |
|
|
|
// const text = ` |
|
// # Employee records |
|
// - martin: |
|
// name: Martin D'vloper |
|
// job: Developer |
|
// skills: |
|
// - python |
|
// - perl |
|
// - pascal |
|
// - tabitha: |
|
// name: Tabitha Bitumen |
|
// job: Developer |
|
// skills: |
|
// - lisp |
|
// - fortran |
|
// - erlang |
|
// `; |
|
|
|
// const yaml = jsyaml.load(text); |
|
// console.log(yaml); |
|
async function initMap() { |
|
var latLng = new google.maps.LatLng(48.7758, 9.1829); |
|
var homeLatLng = new google.maps.LatLng(48.7758, 9.1829); |
|
|
|
var map = new google.maps.Map(document.getElementById("map_canvas"), { |
|
zoom: 12, |
|
center: latLng, |
|
mapTypeId: google.maps.MapTypeId.ROADMAP, |
|
}); |
|
let myData; |
|
|
|
async function getData() { |
|
fetch("./Mouse-Over Yaml.yaml") |
|
.then((response) => response.text()) |
|
.then((yamlString) => jsyaml.load(yamlString)) |
|
.then((data) => { |
|
console.log("data=", data); |
|
myData = data; |
|
myData.destinations.forEach((d) => { |
|
marker = new markerWithLabel.MarkerWithLabel({ |
|
position: new google.maps.LatLng(d.lonLat[1], d.lonLat[0]), |
|
map: map, |
|
draggable: true, |
|
raiseOnDrag: true, |
|
labelContent: "A", |
|
labelAnchor: new google.maps.Point(-6, -35), |
|
labelClass: "labels", // the CSS class for the label |
|
labelInBackground: false, |
|
}); |
|
|
|
var iw = new google.maps.InfoWindow({ |
|
content: |
|
'<b>'+d.name+'</b><br> \ |
|
<a href="https://soeren.cleverroute.net/?origin=Jesberg%2C%20Hessen&arrival=2022-04-29T10%3A00%3A00.000Z&destination=Stuttgart%2C%20Baden-W%C3%BCrttemberg"> Fahrt finden mit cleverroute</a>', |
|
}); |
|
google.maps.event.addListener(marker, "click", function (e) { |
|
// window.parent.location.href = "https://bob.cleverroute.net"//`../?${toQueryString(p)}`; |
|
iw.open(map, this); |
|
}); |
|
}); |
|
}); |
|
} |
|
await getData(); |
|
|
|
// marker = new markerWithLabel.MarkerWithLabel({ |
|
// position: homeLatLng, |
|
// map: map, |
|
// draggable: true, |
|
// raiseOnDrag: true, |
|
// labelContent: "A", |
|
// labelAnchor: new google.maps.Point(-6, -35), |
|
// labelClass: "labels", // the CSS class for the label |
|
// labelInBackground: false, |
|
// }); |
|
} |
|
function log(h) { |
|
document.getElementById("log").innerHTML += h + "<br />"; |
|
} |
|
</script> |
|
</head> |
|
<body onload="initMap()"> |
|
<p></p> |
|
<div id="map_canvas" style="height: 400px; width: 100%"></div> |
|
<div id="log"></div> |
|
</body> |
|
</html>
|
|
|