Map test with jquery.geo-1.0.0-b2.js
by ryanttb
HTML
<div id="map" style="width: 100%; height: 200px; border: 1px solid red">map</div>
<div id="ajaxtest" style="width: 100%; height: 100px; border: 1px solid red">Loading...</div>
JavaScript
$(document).ready(function() {
var map = $('#map').geomap();
$('#ajaxtest').load('/echo/html/', { html: 'Success!', delay: 1 });
map.geomap('option', 'center', [27, 60]);
});