... you've already admitted you have tried to follow some information,
but failed. How would people know that their writings are going to be
any more help? Say what guides you looked at. At what stage you ran
into issue.
You've also said you are not very experienced ... which also suggests
that its going to be a lot of work helping you.
All in all, you need to make it easier for people to help you. At the
moment you effectively asking for people to do the work for you. And
not really knowing what you want.
... so show willing, show how far you got. Ask *specific* questions on
the issues.
On Wed, Jun 22, 2011 at 1:03 PM, Arisztokrata
<magyarari...@gmail.com> wrote:
> no one has ever tried to create such a map? :(
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Maps JavaScript API v3" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-maps-js-api-v3/-/n2QcpMFClG8J.
> To post to this group, send email to google-map...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-maps-js-a...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>
This creates the overlay image, fitting it to "imagebounds":
var oldmap = new google.maps.GroundOverlay(
"http://www.lib.utexas.edu/maps/historical/newark_nj_1922.jpg",
imageBounds);
imagebounds is a rectangle defined by its corners:
var imageBounds = new google.maps.LatLngBounds(
new google.maps.LatLng(40.712216,-74.22655),
new google.maps.LatLng(40.773941,-74.12544));
So to alter the coordinates of the overlay, you alter those coordinates.
Don't forget to change the map centre, as well.