(TMap.TMap Method)
Creates a TerraFly® Map inside a HTML container given by the first argument, which is typically a DIV element. The (latitude, longitude) of the map center coordinates are given by the second and third argument. The created map is shown in a resolution which is given by the fourth argument-level. Each given level is mapped to a specific resolution according to the ZoomLevel-Resolution table. The resolution value is in meters per pixel.
TMap(container,latitude,longitude,level,onLoadCallBackFunction,bufferSize,isAutolnstall, mapEngine, initMapType/*optional*/):TMap
<div id="mapContainer" style="width: 640px; height: 400px;"></div>
<script type="text/javascript">
var map0 = new TMap(mapContainer, 25.7590256665386, -80.3738769902151, 15, "", 1, true, "", "hybrid");
}
</script>