So, i`ve solved the problem with wrong long- and latitude. If Google Maps plugin sets wrong coordinates, you have to add a new action to editime.js:
AddAnyTypeParam("X", "Hujur Xcoord", "");
AddAnyTypeParam("Y", "Hujur Ycoord", "");
AddAction(2, 0, "Set longitudeXY", "Position", "Set to: {0},{1}", "Set longitudeXY", "setXYgoogleMap");
(somewhere in string 70-90)
and then add a new function to runtime.js:
Acts.prototype.setXYgoogleMap = function (x,y)
{
this.googleMap.setCenter(new google.maps.LatLng(x, y));
this.marker.setPosition(this.googleMap.getCenter());
};
Right after setXgoogleMap and setYgoogleMap functions.
Use it wisely and improve .js carefully :)