Hi Rossko,
you can remember at my questions last year?

> > I've found this:http://maps.huge.info/blog/technical/
> > But how can I use this with 36 radiuses (10°-steps)?   :-)
>
> Which 'this'?  There are many articles on that page.

I mean the following Code (radius to coordinates), but unfortunately
it is written in Perl

my $radius = 20 ;
my $clat = 34.918 ;
my $clng = -89.8215 ;
my $PI = 3.141593 ;
my $d2r = $PI/180 ;
my $r2d = 180/$PI ;
my $lat = ($radius/3963) * $r2d ;
my $lng = $lat/cos($clat * $d2r);
my @points = ( ) ;
my $i = 0 ;
my $x = '' ;
my $y = '' ;

for ($i = 0 ; $i < 10 ; $i++)
{
$y = sprintf("%0.6f",$clng + ($lng * cos($PI * ($i/6)))) ;
$x = sprintf("%0.6f",$clat + ($lat * sin($PI * ($i/6)))) ;
push( @points, [$x,$y] ) ;
}

foreach $x ( @points )
{
print "$$x[0],$$x[1]\n" ;
}



On 23 Aug., 15:26, Rossko <[email protected]> wrote:
> > Hello, I have tried this, but without lines there is nothing. Because
> > there is no circle around the lines, and so it is nothing to
> > fill :-)))
>
> You did something wrong then.   It's probably time to give a link to
> your webpage.
>
> You could also try zero-width lines.  You could also set your lines
> the same colour and opacity as the fill.
>
> > I've found this:http://maps.huge.info/blog/technical/
> > But how can I use this with 36 radiuses (10°-steps)?   :-)
>
> Which 'this'?  There are many articles on that page.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to