Files
firstgarden-web-gnu/VR/2019(night)data/graphics/KolorMap/lib/mxn.(provider).geocoder.js
2025-07-02 14:07:56 +09:00

30 lines
565 B
JavaScript

mxn.register('{{api_id}}', {
Geocoder: {
init: function() {
var me = this;
// TODO: Add provider code
},
geocode: function(address, rowlimit){
var mapstraction_geocoder = this;
// TODO: Add provider code
},
geocode_callback: function(response){
var return_location = {};
// TODO: Add provider code
//return_location.street = '';
//return_location.locality = '';
//return_location.region = '';
//return_location.country = '';
//return_location.point = new mxn.LatLonPoint(...);
this.callback(return_location);
}
}
});