[Google Maps API v3] Re: fusion table styling up to 5?

2011-09-09 Thread geocode...@gmail.com
On Sep 8, 10:28 pm, Feng Shi shifeng...@gmail.com wrote:
 I'm developing a google map overlay with fusion table styling.
 To my surprise, I can just have 5 where clause for this styling. All rest
 wheres are ignored. Is it by design?

The documentation seems pretty clear to me (it is by design):
http://code.google.com/intl/en/apis/maps/documentation/javascript/overlays.html#fusion_table_styles

Styles can only be applied to a single Fusion Tables layer per map.
You may apply up to five styles to that layer.

  -- Larry

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Disable infowindow/google markers on standard map

2011-09-09 Thread Ice
Thank you that worked great

-- 
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/-/ONaNV5NIcNIJ.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Problem with polygons interior rings clockwise

2011-09-09 Thread geocode...@gmail.com
On Sep 9, 12:53 am, Faheem Ramzan faheemram...@gmail.com wrote:
 So the conclusion is the polygon clockwise/anti-clockwise exterior ring
 can't contain holes with clockwise/anti-clockwise interior rings in the
 latest versions, and its a feature not a bug?

The conclusion is that interior holes must wind opposite the
exterior ring (unwind)

  -- Larry


  polygon.png
 191KViewDownload

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Set pov automatically to face dynamic markers(Streetview)

2011-09-09 Thread Ice
Hi 

So I've got over 700 maps that all retrieve co-ordinates from a database so
when I set a marker it's position and the position of the streetview are 
exactly the same
this makes computing headings difficult since all solutions posted suggested 
computing
between 2 different locations all the solutions return 0 so I can't really 
use that. This might
work if it was just one static point I was trying to set but all my points 
are dynamic.
And going through 700 database entries and setting each ones heading is not 
something I want to do.

Is there any way to set the pov to automatically face a marker that does not 
require 
calculations between 2 points. 

A few example links so you can see what I'm talking about
http://www.dining-out.co.za/member_details-MemberID-3104.html
http://www.dining-out.co.za/member_details-MemberID-4609.html
http://www.dining-out.co.za/member_details-MemberID-2514.html

Thanks any help will be appreciated

-- 
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/-/D5glCt4kSKIJ.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Read content from a published google map

2011-09-09 Thread Jam
Dear forum,
 
Its clear that people and organisations use google maps and then add their 
own content to them - such as points, boxs, polygons, data, labels... 
 
I am interested in reading content from a website's google map which has 
lots of interesting data stored within points. The website uses the 
googlemaps API Java. 
 
Effectively I just want an interface which behaves as a web browser client 
but publishes the data of interest - so I can process it. Does anyone have 
any thoughts on routes to achieve this?
 
Thanks,
James 

-- 
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/-/TeOPbd-dR3MJ.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: infowindow V3 with jquery tabs with correct resizing

2011-09-09 Thread MymsMan
I have been using a variation of this technique (not using jquery) with a 
reasonable degree of success but have encountered a few minor niggles mainly 
related to Internet Explorer.

   - Sometimes with large infowindow content it overflows the bottom of the 
   window and I have not yet worked out a scheme for predicting when that will 
   occur or suitable CSS styling for conditional scroll bars (It hasn't been a 
   priority to solve)
   - I am building multiple markers and infowindows in a loop and it was 
   fine in Firefox, Chrome, Safari but in IE I found that the infowindows were 
   blank apart from the last.  It appeared for some reason the setContent 
   hadn't worked.   This was easily fixed by adding to the click handler for 
   the marker a condition setContent
  if (document.getElementById('content'+ix))
   {
  
   evntObj.infowindow.setContent(document.getElementById('content'+ix));
 
   
   }
   - IE9 is as good as the other browsers for not overflowing windows but 
   IE8 is particularly prone to overflowing or if given scroll bars formatting 
   a window with room only for scroll bars with no visible text!
   
   

-- 
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/-/dQeSDIFEBhMJ.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Feature Request: Route Calculations to Avoid Designated Areas

2011-09-09 Thread Nianwei Liu
This one (marked dup) has a more detailed description:
 http://code.google.com/p/gmaps-api-issues/issues/detail?id=427
It's been 3+ years so chances are slim.
You could use Esri's ArcGIS API if you are their customers: see this
example:
http://google-maps-utility-library-v3.googlecode.com/svn/trunk/arcgislink/examples/routebarriers.html





On Sep 8, 7:16 am, Andrew Leach andrew.leac...@gmail.com wrote:
 On 8 September 2011 11:53, geocode...@gmail.com geocode...@gmail.com wrote:



  I'm not sure if this is the right place to ask for this, but we'd really
  like to be able to add the functionality for a route calculated by Google 
  on
  our maps to avoid designated areas (that we would define, e.g. using
  polygons in a Fusion Table layer). It would be almost the 'reverse' of the
  current ability to favour highways or waypoints when calculating routes.

  The enhancements/issues list would be better:
 http://code.google.com/p/gmaps-api-issues/issues/list?can=2q=apitype...

  (I thought this one was already there, but I don't see it)

 214:http://code.google.com/p/gmaps-api-issues/issues/detail?id=214

 Google won't implement this unless you can word the request better.

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: flyTo in JS

2011-09-09 Thread Nianwei Liu
Not directly answering your question, but this example is written
entirely in JavaScript , without flash builder etc.

It's implemented via JS/Flash bridge of Flash API.

http://mapbridge.googlecode.com/svn/trunk/examples/Map3DFlyTo.html

Unfortunately flash API is been deprecated.



On Sep 8, 8:30 am, Booie mrbo...@gmail.com wrote:
 Is there a way or has anyone implemented the Flash method FlyTo avaiable
 with 3dMaps for Javascript?  The method essentially provides an animated
 zoom and pan (at the same time) to a given zoom level and latlng.  Obviously
 the attitude parameter is irrelevant in the non 3d environment.   Im mainly
 looking for the animated smooth zoom and pan.

 flyTo(center:LatLng, zoom?:Number, attitude?:Attitude, duration?:Number):
 http://code.google.com/apis/maps/documentation/flash/reference.html#M...

 In other words, I'm wondering what the js equivalent of this would be?

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] (API V3)Google places query results are incomplete

2011-09-09 Thread Andrea C.
Hi everybody,

I've written an App that uses google places API V3 for searching
restaurant and museum, near a user choosen street.

The restaurant  part return a number of significatives places and
works well.

Instead the museum part have no query results, the only thing I've
changed is the types array, from restaurant to museum.


The weird thing is that if I search for example Cenacolo, Milano in
the google place page, I can find it with his own page.

If i search for museum in santa maria delle grazie square (where is
located cenacolo), even with a huge radius, with the google apis in my
App, I have no results.

I even seen that Cenacolo in the place page is marked as museum, so
what is the problem?
I cannot understand why It didn't work.


thanks for the patience, sorry for the bad english.

Bye

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Set pov automatically to face dynamic markers(Streetview)

2011-09-09 Thread geocode...@gmail.com
On Sep 9, 6:09 am, Ice supp...@us.sleeping-out.com wrote:
 Hi

 So I've got over 700 maps that all retrieve co-ordinates from a database so
 when I set a marker it's position and the position of the streetview are
 exactly the same this makes computing headings difficult since all solutions 
 posted suggested
 computing between 2 different locations all the solutions return 0 so I can't 
 really
 use that.

That is not what I get for the 3 examples you provided.

 This might work if it was just one static point I was trying to set but all 
 my points
 are dynamic.
 And going through 700 database entries and setting each ones heading is not
 something I want to do.

 Is there any way to set the pov to automatically face a marker that does not
 require calculations between 2 points.

Not that I know of.


 A few example links so you can see what I'm talking about

http://www.dining-out.co.za/member_details-MemberID-3104.html

http://www.geocodezip.com/v3_StreetView_lookAt.html?lat=-33.908837lng=18.412238


http://www.dining-out.co.za/member_details-MemberID-4609.html

http://www.geocodezip.com/v3_StreetView_lookAt.html?lat=-33.916485lng=18.417377


http://www.dining-out.co.za/member_details-MemberID-2514.html

http://www.geocodezip.com/v3_StreetView_lookAt.html?lat=-33.8295708059575lng=18.4814286231995

  -- Larry


 Thanks any help will be appreciated

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Read content from a published google map

2011-09-09 Thread Rossko
 I am interested in reading content from a website's google map which has
 lots of interesting data stored within points. The website uses the
 googlemaps API Java.

Okay, so you want to scrape other people's data.  You could just ask
the website owner if they'll let you have a copy, or could let you
know the source they themselves used.

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] How to wait for metadata_changed event on large Kmllayer

2011-09-09 Thread tallt
Hi group - I have a large public KML file that the API v3 can't seem
to render using kmllayer on the first try. If I refresh my browser
window one or two times, then eventually I do get a metadata_changed
event and the layer finally displays.

When I watch the network panel via Firebug or Chrome, the first
kmllayer GET request is made, but seems to hang up after about 4
seconds, and no metadata_changed event is ever fired.

Refreshing the browser is a pain, so I've been trying to make multiple
kmllayer requests via code in an attempt to get the metadata_changed
event and to have the layer displayed.

This seems to work pretty reliably with Firefox, and sometimes with
IE, but almost never with Chrome.

Here's the simple app that I've written to test multiple kmllayer
requests:

http://timhaverland.s3.amazonaws.com/work/finss/kmllayersimpletest02.html

It makes a kmllayer request, then fires off a setTimeout function to
be run after 5 seconds. If the metadata_changed event is not received
by then, it makes another kmllayer request, waits again, and so on. I
stop this loop when 5 requests have been attempted.

Note that the KML url that I'm feeding to kmllayer has a timestamp
parameter on it so I can test without google caching my KML/rendered
tiles. This timestamp changes every 2 minutes. So you may have to wait
a couple of minutes to get the initial 4s timeout or hangup from
google.

One further note, when I feed my KML to maps.google.com, it always
seems to load the first time with no problems.

Thanks for any advice you may have,

Tim

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Set pov automatically to face dynamic markers(Streetview)

2011-09-09 Thread Ice
I'll try what you've posted 

Thank You much appreciated

-- 
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/-/PavukeTt6SkJ.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: How to wait for metadata_changed event on large Kmllayer

2011-09-09 Thread tallt
Guess I should clarify what I'm asking:

1) Does anyone know why this does not work in Chrome (my biggest
concern)?
2) Anybody know a better way of waiting for a KML to be rendered ...
it's obvious after the initial call to kmllayer that Google is still
working on rendering my KML. Is there any way to keep my initial call
to kmllayer from timing out?

On Sep 9, 9:57 am, tallt tim.haverl...@gmail.com wrote:
 Hi group - I have a large public KML file that the API v3 can't seem
 to render using kmllayer on the first try. If I refresh my browser
 window one or two times, then eventually I do get a metadata_changed
 event and the layer finally displays.

 When I watch the network panel via Firebug or Chrome, the first
 kmllayer GET request is made, but seems to hang up after about 4
 seconds, and no metadata_changed event is ever fired.

 Refreshing the browser is a pain, so I've been trying to make multiple
 kmllayer requests via code in an attempt to get the metadata_changed
 event and to have the layer displayed.

 This seems to work pretty reliably with Firefox, and sometimes with
 IE, but almost never with Chrome.

 Here's the simple app that I've written to test multiple kmllayer
 requests:

 http://timhaverland.s3.amazonaws.com/work/finss/kmllayersimpletest02

 It makes a kmllayer request, then fires off a setTimeout function to
 be run after 5 seconds. If the metadata_changed event is not received
 by then, it makes another kmllayer request, waits again, and so on. I
 stop this loop when 5 requests have been attempted.

 Note that the KML url that I'm feeding to kmllayer has a timestamp
 parameter on it so I can test without google caching my KML/rendered
 tiles. This timestamp changes every 2 minutes. So you may have to wait
 a couple of minutes to get the initial 4s timeout or hangup from
 google.

 One further note, when I feed my KML to maps.google.com, it always
 seems to load the first time with no problems.

 Thanks for any advice you may have,

 Tim

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: using a kml file with Google Maps

2011-09-09 Thread Ron White
Thanks for the link.  I will check it out.  But those kml files work
with v2 and they work on the Google Maps web page, so I sure hope they
still work with v3.

Ron


On Sep 8, 10:14 pm, Joseph Elfelt josephelf...@gmail.com wrote:
 I see that your samplekmlfile has a number of network links.
 Only the last 2 of those point to actualkmlfiles.

 Seehttp://code.google.com/apis/kml/documentation/kmlreference.html#link
 Sounds like your href tags have to point to actualKMLfiles.

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Add marker to map and get coordinates

2011-09-09 Thread Aldaz
Hi, i am trying to create a map which allows a marker to be placed on
click. I have setup the search so that an address can be located, then
i would like to be able to click to add a marker on the map. Once the
marker has been placed i want to send the location of the marker in an
email.

Here is a link to what i have got so far 
http://www.greengurugroup.co.uk/map_test.html

I think i should be able to sort the emailing part but i cant get the
code to work for adding the marker. The code i am using is from
http://www.cycloloco.com/shadowmaker/shadowmaker.htm (below) but i
dont think i have implemented it correctly and there are no
instructions.

var map; // Must be initialized first.

function addMarker(point) {
var image = new google.maps.MarkerImage(dynimg/-509858078/image,
new google.maps.Size(48.0, 48.0),
new google.maps.Point(0, 0),
new google.maps.Point(24.0, 24.0)
);
var shadow = new google.maps.MarkerImage(dynimg/-509858078/
shadow.png,
new google.maps.Size(73.0, 48.0),
new google.maps.Point(0, 0),
new google.maps.Point(24.0, 24.0)
);
var marker = new google.maps.Marker({
position: point,
map: this.map,
icon: image,
shadow: shadow
});

google.maps.event.addListener(marker, 'click', function(event)
{
marker.setMap(null);
google.maps.event.clearInstanceListeners(marker);
});
}

google.maps.event.addListener(map, 'click', function(event) {
addMarker(event.latLng);
});

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] render routes from Google XML format

2011-09-09 Thread M M
Hello,
I need to render route obtained by means of an XMLHttpRequest. 
 
output could be in json or xml format. it looks like 
 
http://code.google.com/intl/fr-FR/apis/maps/documentation/directions/#DirectionsResponses
 
for example
http://maps.googleapis.com/maps/api/directions/xml?origin=Chicago,ILdestination=Los+Angeles,CAwaypoints=Joplin,MO|Oklahoma+City,OKsensor=false
 
 
in the API guide, 
google.maps.DirectionsRenderer (  
*DirectionsRenderer*http://code.google.com/intl/fr/apis/maps/documentation/javascript/reference.html#DirectionsRenderer
 ) 
displays only routes described in the form of 
*DirectionsResult*http://code.google.com/intl/fr/apis/maps/documentation/javascript/reference.html#DirectionsResult
 which 
is not strictly JSON.

is there any way to convert the route from the XML format (or JSON) format 
to the DirectionsResult format. or a way to display routes directly from XML 
format
 
Regards
 
M.
 
 
 
 
 

-- 
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/-/iUIg9XXscHAJ.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: using a kml file with Google Maps

2011-09-09 Thread Joseph Elfelt
Ron,

I wrote a general purpose file viewing app for v3.  The link below
displays your KML file.  If the only data on the map is coming from
the last 2 href tags in your file, then I  suspect the reason that
your other hrefs do not put data on the map is because they are not
direct URLs to KML files.

http://www.mappingsupport.com/p/gmap4.php?q=http://www.usahas.com/ge/kml/no_bam/vr190.kml

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] How to cache server side geocodes

2011-09-09 Thread Henri
Hi,

My webserver makes around 80% of the same geocodes everyday. Several
hundred a day wasn't a problem but now it is starting to get closer to
the 2.5k daily limit set by Google I wanted to know what the correct
way to cache server side geocode requests.

I've read this 
http://code.google.com/apis/maps/articles/geocodestrat.html#caching
but it did not explain how to actually cache the results. I am using
php/mysql and if anybody knows any good tutorials, documentation or
advice/knowledge on this subject I would really appreciate it.

Thanks in advance,
Henri

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Need help designing a custom business search

2011-09-09 Thread Nik Long
Hello, 
I am a total newbie to this, so excuse me if this is a dumb question.  I 
need to make a search page like this one 
http://rxcut.trihopegroup.net/en/PharmacySearch.html customised to a 
sprcific set of retailers, searchable by address/zip code radius.  
I have been unable to find any how tos or tutorials on this structure.  Any 
help would be greatly appreciated!
 
Thank you all so much in advance!
 

-- 
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/-/vA4ztx999U8J.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] Need help designing a custom business search

2011-09-09 Thread Barry Hunter
There is this
http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html

On Fri, Sep 9, 2011 at 6:13 PM, Nik Long niko6...@gmail.com wrote:
 Hello,
 I am a total newbie to this, so excuse me if this is a dumb question.  I
 need to make a search page like this one
 http://rxcut.trihopegroup.net/en/PharmacySearch.html customised to a
 sprcific set of retailers, searchable by address/zip code radius.
 I have been unable to find any how tos or tutorials on this structure.  Any
 help would be greatly appreciated!

 Thank you all so much in advance!


 --
 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/-/vA4ztx999U8J.
 To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
 To unsubscribe from this group, send email to
 google-maps-js-api-v3+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-maps-js-api-v3?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Add marker to map and get coordinates

2011-09-09 Thread xelawho
i would like to be able to click to add a marker on the map.

your var image and var shadow lines
look incomplete
and your event listener
needs to be in initialize()

you can also use
addListenerOnce
to add a listener
that works once
instead of using
clearInstanceListeners
to clear it later

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] making javascript api v3 mobile-friendly

2011-09-09 Thread Natalie O'Toole
Hi Barry,

How do I create a map whereby the infowindow pop-ups work in mobile devices, 
such as iPads. 
How do I get the infowindow pop-up menus to work in mobile devices, please?
Will they automatically work, or is there some code I have to write to get 
this working?

Thanks very much for your help!

Cheers,
Nat

-- 
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/-/c9KFe07Re94J.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] making javascript api v3 mobile-friendly

2011-09-09 Thread Barry Hunter
I guess you should try it.

As far as I know, no special work is particully needed.

On Fri, Sep 9, 2011 at 8:38 PM, Natalie O'Toole noto...@mtroyal.ca wrote:
 Hi Barry,

 How do I create a map whereby the infowindow pop-ups work in mobile devices,
 such as iPads.
 How do I get the infowindow pop-up menus to work in mobile devices, please?
 Will they automatically work, or is there some code I have to write to get
 this working?

 Thanks very much for your help!

 Cheers,
 Nat

 --
 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/-/c9KFe07Re94J.
 To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
 To unsubscribe from this group, send email to
 google-maps-js-api-v3+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-maps-js-api-v3?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: using a kml file with Google Maps

2011-09-09 Thread Ron White
They aren't.  They are network links to a web service that basically
builds the kml file.  But, all the network links show up in Google
Earth and they all show up if I use method 1 from above (v2).  And
they all show up if you put the url directly into Google Maps.  If v3
doesn't work the same way, then I guess I can't use v3?  That would
seem like a mistake in v3.

Nice map Joseph.  I need to add that cursor coordinate code to my map.

Ron


On Sep 9, 5:15 pm, Joseph Elfelt josephelf...@gmail.com wrote:
 Ron,

 I wrote a general purpose file viewing app for v3.  The link below
 displays yourKMLfile.  If the only data on the map is coming from
 the last 2 href tags in your file, then I  suspect the reason that
 your other hrefs do not put data on the map is because they are not
 direct URLs toKMLfiles.

 http://www.mappingsupport.com/p/gmap4.php?q=http://www.usahas.com/ge/...

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Need help designing a custom business search

2011-09-09 Thread Nik Long
My most sincere thanks Barry!

-- 
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/-/_E5tqB3gBwwJ.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Heatmap ...

2011-09-09 Thread salmoliv
Hello,

I need to display polygons in a UK map, like on this website:
http://www.estateangels.co.uk/house_prices?place=AL1+2PSsearchdistance=0houseage=0solddate=0housestyle=0submit=Search

Has anyone any idea how this could be done?

Thanks a lot.
Olivier

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: using a kml file with Google Maps

2011-09-09 Thread Rossko
 They are network links to a web service that basically
 builds the kml file.

That presumably takes time, and probably longer when multiple requests
are banged in. Have you seen this thread?
http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/ebaa678e1052413a/f6418b8ae848ed55

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: addListener

2011-09-09 Thread Rossko
 What am I doing wrong, please?

What javascript errors do you get?  Find out how to do basic debugging
in your browser.

Wrapping your functions inside another function is rarely a good idea,
they tend to cease existing when the parent function ends.

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.