Is there a way to change the position of the mouse coordinates? We are using Google’s map as a background and there is text covering up the mouse coordinates.
Mouse Coordinate Position
Hi Taylor,
I believe the below code works for you:
<script type="text/javascript">
function OnMapCreated(map) {
OpenLayers.Util.getElement("MousePosition").style.left = "0px";
}
</script>
Thanks,
Troy