Skip to main content

Posts

Showing posts from July 29, 2018

map 2

<!DOCTYPE html> <html> <head>     <!--<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>-->     <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAEMV4i5gqMGtrND-E-QCtrG1lfaRz9-sk"></script>     <script type="text/javascript">                 var src = "images/flight.png";         var image = 'https://developers.google.com/maps/documentation/javascript/examples/full/images/beachflag.png';     function initMap() {             var srcLat = document.getElementById("ddlsource").value.split(',')[0]         srcLong = document.getElementById("ddlsource").value.split(',')[1]         destLat = document.getElementById("ddldestination").value.split(',')[0]         destLog = document...

map

<html> <head>     <title></title>     <style>         .buttonClass {     background-color: #4CAF50; /* Green */     border: none;     color: white;     padding: 8px 6px;         display: inline-block;     font-size: 16px;     border-radius:4px 4px 4px 4px ; }              .txtClass {     background-color: lightgray; /* Green */     border: none;     color: black;     padding: 5px 3px;         text-decoration: none;     display: inline-block;     font-size: 16px;     border-radius:4px 4px 4px 4px ; }     </style>     <!--<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>-->     <script...