﻿(function($, module) {

//------------
// LATLONPOINT
//------------
    
    $.LatLonPoint.prototype.toGoogle = function() {
        return new GLatLng(this.lat,this.lon);
    };

    // Register
	$.registerModule(module);

})(mxn, 'latlonpoint.google');