Google Maps

Concerns? Let us know by posting here.

Moderators: avij, Phaseolus, Fons, dserrano5

User avatar
avij
Forum Moderator
Forum Moderator
Posts: 6120
Joined: Mon May 27, 2002 10:45 pm
Location: Helsinki Finland
Contact:

Re: Google Maps Beta Test

Post by avij »

Google Maps should work better now with the new code contributed by wisi :)
Money makes the world go round. We track how the money goes round the world.
User avatar
an-148
Euro-Master
Euro-Master
Posts: 4596
Joined: Wed Oct 11, 2006 5:04 pm
Location: summer: Ivanica, BiH ; winter: La Calamine (Liège) BE
Contact:

Re: Google Maps Beta Test

Post by an-148 »

avij wrote:Google Maps should work better now with the new code contributed by wisi :)

YES, excellent ! thanks to the computer specialists !! wisi, and and :D :D
http://meine.flugstatistik.de/image/an148.gif" onclick="window.open(this.href);return false;
mizar
Euro-Regular in Training
Euro-Regular in Training
Posts: 136
Joined: Tue Jun 05, 2012 5:18 pm
Location: Slovenia

Re: Google Maps

Post by mizar »

Nice progress! If you click on EBT menu (when you get to google dot map of course) in top right corner, you can see choose to see your dot count, which then appears in menu title, and dot grid, which at least for me works faster than in Google Earth (plus it works for the whole world)
User avatar
Miles66
Euro-Master
Euro-Master
Posts: 3617
Joined: Tue Feb 14, 2006 12:34 pm
Location: K€MP€N -> KR€IS VI€RSEN - NI€D€RRH€IN - NRW - G€RMANY - €UROP€

Re: Google Maps

Post by Miles66 »

I still miss some functions wisi ;-)
Wittekind
Euro-Newbie
Euro-Newbie
Posts: 3
Joined: Sat Mar 01, 2014 4:41 pm

Re: EBT maps changes

Post by Wittekind »

portaonze wrote:
mizar wrote:Where did the buttons go to show grid map, locations of cities where notes were entered etc?
Actually I have also been wondering that for quite a while.
Always found the "city locator for entered notes" quite useful.
It allowed me to spot some "not so accurate locations" and ask for them to be corrected.
Any idea if and when we could have these features back?
Thanks.
Although the quote is older than 2 years, it is still a topic to me. I really miss the possibility to see the different locations of entered bills. Does any technical forum member know how to add this option to the Google Dotmap? It used to be my favourite :(
User avatar
Jackgaillard
Euro-Master
Euro-Master
Posts: 9406
Joined: Fri Jun 06, 2008 9:35 pm
Location: Lens, France
Contact:

Colors on Google dot maps

Post by Jackgaillard »

Hello everybody
does anybody knows what makes change color on dotmap between dark blue and red
https://fr.eurobilltracker.com/profile/ ... ser=127262
I noticed that red dot is main dot (12949 notes of 28503) an dark blue is only 1 note
what makes difference between dark and light green
thank you by advance for explanations
Jack
Ecouter Eurobilltracker sur les grosses têtes de Philippe Bouvard ICI
User avatar
googlejaps
Euro-Master
Euro-Master
Posts: 3228
Joined: Thu Sep 11, 2008 9:12 pm
Contact:

Re: Google Maps

Post by googlejaps »

Jackgaillard wrote:Hello everybody
does anybody knows what makes change color on dotmap between dark blue and red
https://fr.eurobilltracker.com/profile/ ... ser=127262
I noticed that red dot is main dot (12949 notes of 28503) an dark blue is only 1 note
what makes difference between dark and light green
thank you by advance for explanations
Jack
It is a gradual change of color based on the number of notes in that dot. I think that the scale is logarithmic. So your highest dot is red, but a dot with 1/2 times the number of notes of your red dot is probably only one step lighter than the red dot. The color on the map is personal, based on the maximum number of notes in your own map (if that is 500, this dot is red, and if it is 750.000 the dot is also red). This means that you cannot compare the color of a green dot between your own and somebody elses dot.
User avatar
avij
Forum Moderator
Forum Moderator
Posts: 6120
Joined: Mon May 27, 2002 10:45 pm
Location: Helsinki Finland
Contact:

Re: Google Maps

Post by avij »

Yes, correct.

For the programmers out there:

Code: Select all

$colours = array();
for($i=0;$i<50;$i++) {
	$red   = (int) ((6*(50-$i) + 24*$i)/50);
	$green = (int) ((5*(50-$i) + 253*$i)/50);
	$blue  = (int) ((243*(50-$i) + 53*$i)/50);
	$colours[$i]=imagecolorallocate($im,$red,$green,$blue);
}
for($i=0;$i<50;$i++) {
	$red   = (int) ((24*(50-$i) + 244*$i)/50);
	$green = (int) ((253*(50-$i) + 36*$i)/50);
	$blue  = (int) ((53*(50-$i) + 0*$i)/50);
	$colours[$i+50]=imagecolorallocate($im,$red,$green,$blue);
}
$colours[100]=$colours[99];
...
if($count[$x][$y]>0) {
	imagefilledrectangle($im,
	(int)(getX($minlat+($maxlat-$minlat)/$ycells*($y-0.25),$minlon+($maxlon-$minlon)/$xcells*($x-0.5), $area, $type)),
	(int)(getY($minlat+($maxlat-$minlat)/$ycells*($y+0.75),$minlon+($maxlon-$minlon)/$xcells*($x+0.5), $area)),
	(int)(getX($minlat+($maxlat-$minlat)/$ycells*($y+0.75),$minlon+($maxlon-$minlon)/$xcells*($x+0.5), $area, $type))-1,
	(int)(getY($minlat+($maxlat-$minlat)/$ycells*($y-0.25),$minlon+($maxlon-$minlon)/$xcells*($x-0.5), $area))-1,
	$colours[(int)(99*log($count[$x][$y])/log($maxval))]);
	$dots++;
}
This is actually for the traditional dotmap (not Google Map), but the colours are allocated similarly in both.
Money makes the world go round. We track how the money goes round the world.
Post Reply

Return to “Feedback and Development”