function initialize(){
/*key=ABCDEFG Bạn phải thay ABCDEFG bằng key mà bạn đăng ký */
/*Create property cho map*/
var mapProp = {
center: new hcmmap.LatLng(10.8152328, 106.680505),
zoom: 10
};
/*Create map object with property(mapProp)*/
var map = new hcmmap.Map(document.getElementById("divMap"), mapProp);
/*HandlerLayerImage.ashx Get image with thông tin là tile image
Cách lấy thông số tile Image như sau
HttpContext context
string tileX = context.Request.QueryString.Get("X");
string tileY = context.Request.QueryString.Get("Y");
string zoom = context.Request.QueryString.Get("Level");
*/
var layer = new hcmmap.Layer({ url: "../handle/HandlerLayerImage.ashx" });
layer.setMap(map);
/*Nếu muốn xử lý tiếp, như request lên server with thông số của tile này
thì đặc tả thêm thuộc tính fnCallback trong LayerOptions
*/
}
/*Khởi động map sau khi page load xong*/
hcmmap.event.addDomListener(window, 'load', initialize);