Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
GSmallMapControl functions
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
dave@dbws.net  
View profile  
 More options Oct 17 2005, 6:23 am
From: "d...@dbws.net" <d...@dbws.net>
Date: Mon, 17 Oct 2005 03:23:52 -0700
Local: Mon, Oct 17 2005 6:23 am
Subject: GSmallMapControl functions
Hi All,

I need to create my own version of the zoom & pan buttons,  I cant find
out what actually gets called when I click on buttons pan buttons
though, does anyone know this ?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mike Williams  
View profile  
 More options Oct 17 2005, 6:48 am
From: Mike Williams <nos...@econym.demon.co.uk>
Date: Mon, 17 Oct 2005 11:48:59 +0100
Local: Mon, Oct 17 2005 6:48 am
Subject: Re: GSmallMapControl functions
The pan buttons perform

East    map.pan(-Math.floor(map.viewSize.width * 0.5), 0);
West    map.pan(Math.floor(map.viewSize.width * 0.5), 0);
South   map.pan(0,-Math.floor(map.viewSize.height * 0.5));
North   map.pan(0,Math.floor(map.viewSize.height * 0.5));

(I think that's the right way round, id they go the wrong way just flip
the minus signs).
--
Another quick fix from
The Blackpool Community Church Javascript Team
http://www.econym.demon.co.uk/googlemaps/index.htm


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
dave@dbws.net  
View profile  
 More options Oct 17 2005, 7:24 am
From: "d...@dbws.net" <d...@dbws.net>
Date: Mon, 17 Oct 2005 04:24:56 -0700
Local: Mon, Oct 17 2005 7:24 am
Subject: Re: GSmallMapControl functions
Thats it, Thanks :-)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
johnny serup  
View profile  
 More options Nov 7 2012, 4:59 am
From: johnny serup <ngsystem.johnny.se...@gmail.com>
Date: Wed, 7 Nov 2012 01:59:40 -0800 (PST)
Local: Wed, Nov 7 2012 4:59 am
Subject: Re: GSmallMapControl functions

Easy way of doing this :

function panTheGoogleMapUp()
{
map.panBy(0,-100);

}

function panTheGoogleMapDown()
{
map.panBy(0,100);
}

function panTheGoogleMapLeft()
{
map.panBy(-100,0);
}

function panTheGoogleMapRight()
{
map.panBy(100,0);

}

Den mandag den 17. oktober 2005 12.23.52 UTC+2 skrev da...@dbws.net:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »