Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Google Maps
zoom2

 India|info=
Wiki Markup
[*Googlemap outlininng connectivity and other details in countries where MIT faculty and students may travel.*|http://web.mit.edu.ezproxyberklee.flo.org/~ranjani/www/mymap/MITaroundtheworld.html|Internet info]

[html]
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>MIT - Connectivity Around the World</title>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var map;
function initialize() {
  var myLatlng = new google.maps.LatLng(28.35,77.12);
  var myOptions = {
    zoom: 1,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }

  map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var location =new google.maps.LatLng(28.35,77.12);
    var marker = new google.maps.Marker({
        position: location, 
        map: map
    });
    attachMessage(marker);

// The five markers show a secret message when clicked
// but that message is not within the marker's instance data

function attachMessage(marker) {
  var message = "<a href =\"https://wikis-mit-edu.ezproxyberklee.flo.org/confluence/display/fsx/Faculty+and+Student+Experience+-+Travel+Template\+Profile+-+India"> Travel Profiles - India ";
  var infowindow = new google.maps.InfoWindow(
      { content: message
      });
  google.maps.event.addListener(marker, 'click', function() {
    infowindow.open(map,marker);
  });
}
}
</script>
</head>
<body style="margin:0px; padding:0px;" onload="initialize()">
  <div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>
[html]

[*Faculty Travel Profiles*|Faculty and Student Experience - Travel Template|Travel Profile]