anychart.onDocumentReady(function () {
var map = anychart.map();
map.geoData(anychart.maps.australia);
var yLabel = map.crosshair().yLabel();
yLabel.format(function () {
return "Lat: " + this.value;
var xLabel = map.crosshair().xLabel();
xLabel.format(function () {
return "Lon: " + this.value;
map.title("Format Label of Crosshair");
map.container("container");