1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2026-06-13 16:05:40 +02:00
Files

33 lines
982 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
2019-05-12 10:50:27 +02:00
<html><head><script type="text/javascript" src="/test.js" charset="utf-8"></script></head>
<body>
<p>
<img src='emoji.png'><br>Local image</p>
<p>
2021-08-18 15:55:54 +02:00
<img src='dontexist.png'><br>Non existing local image</p>
<p><img src='http://www.briskbard.com/images/logo2.png'><br>Remote image</p>
2019-01-17 14:53:02 +01:00
<p><button onclick="myAlertFunction()">Show Alert box</button></p>
2021-08-18 15:55:54 +02:00
<p><button onclick="sendCustomReq()">Send request</button></p>
<p><img src='jupiter.png'><br>Bigger image</p>
<p>This is the Google Maps example.</br>Edit this HTML file to insert your Google Maps API key.</p>
<div id="googleMap" style="width:800px;height:400px;"></div>
<script>
function myMap() {
var mapProp= {
center:new google.maps.LatLng(41.656264,-0.8790698),
zoom:15,
};
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
}
</script>
2019-01-17 14:53:02 +01:00
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_MAPS_API_KEY&callback=myMap"></script>