[Google Maps API v3] Re: Offset x,y location of D3 markers on Google Map v3

2013-07-09 Thread en4ce
something like this:

icon =  new google.maps.MarkerImage(markerIcon,new 
google.maps.Size(37,37),null,new google.maps.Point(0, 32));

var marker = new google.maps.Marker({
[.]
icon:icon
});

Am Freitag, 10. Mai 2013 01:30:00 UTC+2 schrieb Chandra Miller:
>
> I am trying to overlay multiple markers at the same lat/long using d3.js 
> on Google Maps.  The data I am trying to display is weather data so I would 
> like the marker to display temp, dewpoint, relative humidity, etc. all at 
> one time.  I need to get the markers to offset from the lat/long point 
> given to each marker .  My map is at 
> http://alert.fcd.maricopa.gov/alert/Google/v3/mobile.html click on 
> datasets and then weather data.  Right now only Dewpoint will display and I 
> believe temp is underneath because I am not getting any errors on my 
> javascript file.  Picture of how I would like the marker to display is at 
> *http://alert.fcd.maricopa.gov/alert/Google/image/wxmarker.png*
> .
>
> function updateWxImage() {
>  var reqstamp = Number(new Date());
>  var rptDate = " ";
>  var strDataset = "";
>  var item = $('#date')[0];
>  item.style.background = "#00";
>  item.style.color = "#00";
>  item.innerHTML = "...updating dataset...";
>  ClearOverlays();
>  var width = 36;
>  var height = 12;
>  
>  // Start D3 Code
>  var fill = d3.scale.linear()
>   .domain([0.0, 150.0])
>   .range(["black", "black"]);
> 
>  // Load the station data. When the data comes back, create an overlay.
>  // Calls currain.php which converts xml to json
>  d3.json("./php/currentwx.php", function(jsonData) {
>   overlayD3 = new google.maps.OverlayView();
>   
> 
>   var data = jsonData.data;
>  
>   // Add the container when the overlay is added to the map.
>   overlayD3.onAdd = function() {
>var layer = d3.select(this.getPanes().floatPane).append("div")
> .attr("class", "stations")
> .attr("id", "stations");
> 
>// Draw each marker as a separate SVG element.
>// We could use a single SVG, but what size would it have
>overlayD3.draw = function() {
> var projection = this.getProjection();
> 
> padding = 12;
> 
> var marker1 = layer.selectAll("svg")
>  .data(d3.entries(data))
>  .each(transform) // update existing markers
>  .enter().append("svg:svg")
>  .each(transform)
>  .attr("class", "marker")
>  .attr("id", "marker")
>  .attr("width", width)
>  .attr("height", height)
>  .attr("title",  function(d) { return d.value.tempid + ' - ' + 
> d.value.name; })
>  .on("click", function(d) { addTempInfoWindow(d); });
> 
> 
>  // Add a rectangle.
>  marker1.append("svg:rect")
>   .attr("x", 0)
>   .attr("y", 0)
>   .attr("rx", 4)
>   .attr("ry", 4)
>   .attr("width", padding*3)
>   .attr("height", padding)
>   .attr("title",  function(d) { return d.value.tempid + ' - ' + 
> d.value.name; })
>   .style("fill", function(d) { return fill(d.value.temp); }) 
>   .style("display", function(d) { if (d.value.temp == 0 || 
> d.value.temp < -90) { return "none"; } else { return "inline"; }});
> 
> 
>  // Add a label.
>  marker1.append("svg:text")
>   .attr("x", padding*1.5)
>   .attr("y", padding*0.85)
>   .attr("text-anchor", "middle")
>   .attr("font-weight", "bold")
>   .attr("font-size", function(d) { if (d.value.temp == 0 || 
> d.value.temp < -90) { return padding*1.05; } else { return padding; }})
>   .style("fill", function(d) { 
>if (d.value.temp < -90) {
> return "red"; 
>   
>} else {
> return "red"; 
> 
>}
>   })
>   .text(function(d) { 
>if (d.value.temp < -90) {
>  return "M";
>} else {
> return d.value.temp; 
>}
>   });
> 
> function transform(d) {
>  d = new google.maps.LatLng(d.value.latitude, d.value.longitude);
>  d = projection.fromLatLngToDivPixel(d);
>  return d3.select(this)
>   .style("left", d.x + "px")
>   .style("top", d.y + "px");
> }
>};
>
>overlayD3.onRemove = function() {
> var marker = d3.select("#marker").remove();
> var layer = d3.select("#stations").remove();
> 
>};
>
>   };
>   overlayD3.setMap(map);
> 
> 
>   overlayD3.onAdd = function() {
>var layer = d3.select(this.getPanes().floatPane).append("div")
> .attr("class", "stations")
> .attr("id", "stations");
> 
>// Draw each marker as 

[Google Maps API v3] Re: Can I define an offset for the position of standard Map Controls like MapType and Zoom?

2013-07-09 Thread en4ce
voted as well

Am Freitag, 17. Februar 2012 14:57:36 UTC+1 schrieb Coen de Jong:
>
> Test website to see the problem: 
> http://labs.shifthappens.nl/vagabond/pilot/
>
> I have a navigation bar at the top, but the map is behind this element and 
> therefore the MapType control and the Zoom control are not usable. I know I 
> can set the position of a control with the ControlPosition constants, but 
> this is not enough. I would like to set an offset so it doesn't default to 
> the top most position. How can I do this without building my own custom 
> controls and all?
>
> Best Regards,
>
> Coen de Jong
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-maps-js-api-v3+unsubscr...@googlegroups.com.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
Visit this group at http://groups.google.com/group/google-maps-js-api-v3.
For more options, visit https://groups.google.com/groups/opt_out.




[Google Maps API v3] Re: Thank you - www.krugerlive.com

2012-12-16 Thread en4ce
i have to agree...on slow pcs (like my laptop) the map is very laggy and 
sluggish 

Am Freitag, 14. Dezember 2012 09:08:14 UTC+1 schrieb Pil:
>
> Pretty confusing, too much PR, and too many bugs. 
> Sorry, not my taste. )-; 
>
>
> On Dec 14, 7:24 am, Rob Maclean  wrote: 
> > Hello. 
> > 
> > Just a quick but big THANK YOU to all contributors to this group for 
> your 
> > invaluable help getting our live game sightings map of Kruger Park in 
> South 
> > Africa. 
> > 
> > It's launched (www.krugerlive.com) and getting about 4,000 visits a 
> day. 
> > The sightings are generated by park users with our iOS and Android app - 
> > now the number 1 selling travel app in South Africa. 
> > 
> > We share the sightings data (seewww.krugerlive.com/historic.html) with 
> the 
> > Endangered Wildlife Trust and the University of Cape Town's Zoology 
> > Department to track dispersal and population densities of rare 
> predators, 
> > such as the African Wild Dog. App users can also add signs of suspicious 
> > activity, such as poaching, immediately to the map, including a photo 
> and 
> > exact location. We then share this with the wildlife protection agencies 
> in 
> > the park. 
> > 
> > Anyway, we believe it's a really interesting, innovative and useful 
> > implementation of Fusion Tables, Maps and Android. Using Analytics we 
> can 
> > see that people from all around the world (97 countries!) like to 
> "watch" 
> > wild African unfold in real time, spending over 3 mins on the map each 
> > time. We're hope to roll out to other parks before too long. 
> > 
> > Anyway, thanks again for your help and patience with my stupid 
> questions! 
> > 
> > Rob 
>

-- 
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/-/YlY8ClrBLHUJ.
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] Site Review

2012-04-24 Thread en4ce
agree ^^

about this: 
user interface, 
--> i didn't test much there but i hate menu´s like that, you click there 
and the main menu disappears... that is very user unfriendly, top and left 
menus are standard
it's navigation
--> same as before + the font i am seeing font please my eyes 
graphics design 
--> i guess this needs the most work, for most this design looks like 2005 
so its not pleasing for my eye, everything seems mashed together, 
the padding's are not good as well, banners with adds are ok if they fit to 
your page... yours dont, sorry to say..., why there is such a big picture 
on the right that seems to be created by paint ? and why is the guy 
white, Nigeria in Africa, the news in the center of the page are 
very misplaced + they are too small

i guess i can get endless here over the flaws but i better stop and give 
you a suggestion:

you really should dig up books about:
- webdesign 
- webfonts
- typografie
- structure of a page
- css 3
and design in general

i don't want to be mean, i just tell my honest opinion since you ask that 
for in a maps forum ^^ 


Am Dienstag, 24. April 2012 01:32:18 UTC+2 schrieb Chris Broadfoot (Google 
Employee):
>
> I can't see a map on the site! Of course, my opinions may be biased, but 
> if there isn't a map already: my first suggestion is to add one :)
>
> --
> G+: http://chrisbroadfoot.id.au/+
> Twitter: http://twitter.com/broady
>
>
>
> On Mon, Apr 16, 2012 at 6:46 PM, Abiboy  wrote:
>
>> Hello peeps, Am new here. As a data-base admin, am working on a project 
>> and I need you guys to please check out this website (
>> http://www.nigeriagalleria.com) in terms of Functionality, user 
>> interface, it's navigation, graphics design and it's informational display. 
>> I really need you guys comments on how to better and improve the website 
>> form it current state. Criticism is very welcomed.
>>
>> Thanks 
>>
>> -- 
>> 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/-/2EEzrD1oEZoJ.
>> 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 view this discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/vj0Tju8-JDoJ.
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] SQL Spatial Database with Google Map

2012-04-18 Thread en4ce
like that!

Am Dienstag, 17. April 2012 23:38:06 UTC+2 schrieb StarTraX:
>
>
> You'll have to get your database onto your web server and write some PHP 
> to query it with parameters supplied by your users from a web page then 
> manipulate the results into calls to Maps to display the features.
>
> On Tue, Apr 17, 2012 at 11:55 PM, Phil Arbeau  wrote:
>
>> Hello,
>>
>> I currently have a SQL Server database with geographic data, one table 
>> representing area polygons, with the second table representing events as 
>> points.
>>
>> I was curious if it would be possible to upload this to a Google Map, and 
>> allow the user to select a polygon and then query the summary stats of the 
>> events that fall within that polygon.
>>
>> Thanks in advance,
>>
>> Phil
>>
>> -- 
>> 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/-/KfOdTFHlpOIJ.
>> 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 view this discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/9K5d1tm_0XcJ.
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 enable coords showing on my map?

2012-04-05 Thread en4ce
you need to code it your self

Am Donnerstag, 5. April 2012 20:12:14 UTC+2 schrieb bstar...@koptevo.net:
>
> Site maps.google.com has good additional feature - show lat&lng at mouse 
> cursor when shift key is pressed (this feature must be enabled in maps lab).
>
> How to enable this feature for the map on my page?
>

-- 
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/-/Dcc29crA38MJ.
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: Clusters disappear on zoom

2012-03-23 Thread en4ce
what cluster script you use? marker cluster plus or marker cluster ?

Am Freitag, 23. März 2012 13:02:59 UTC+1 schrieb zimmi:
>
> Hi, 
> when minZoom of map is set and you try to zoom to the lower zoom 
> level, clusters disappear. If you pan the map then, they reappear. Is 
> it possible to fix this somehow?

-- 
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/-/7lgibntNaOsJ.
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] new Street View Controls and documentation

2012-03-22 Thread en4ce
Hi guys,

as i saw on http://google-latlong.blogspot.de/ as well as on my very 
ownpage the streetview panel changed. Since the streetview interface is 
quite different from what i have found in the docs i was wondering if that 
is already in the maps api v3. In the documentation i did not found 
anything about the new functions...

some one know it ?

bests!

-- 
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/-/ea6fndMyxc0J.
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: Drawing Library

2012-03-05 Thread en4ce
i wonder if any one use that feature anyway...

On 5 Mrz., 02:04, Amir F  wrote:
> Hi,
> Do you know how customizable the new drawing library is? I'd like to change
> the icons used for polygon nodes and things like that but couldn't find
> anything on documentation.

-- 
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: Google Map V3 + HTML5 Canvas Image Rotation

2012-01-30 Thread en4ce
when i added the map to a canvas object the map really did not like
it, there was all sorts of flickering no matter what you did,
dragging, zooming... a flickering mess (to be precise i added a gmaps
to a HTML5 Slide)

On 30 Jan., 05:53, seb  wrote:
> Hi,
>
> I have a project where I would like to be able to upload an image at
> the top of Google Map.
> I would like to be able to rotate, resize and drag the image at the
> top of Google Map, then save it as an overlay when I am happy with the
> position and size.
>
> I am thinking using HTML5 Canvas at the top of the Google map for all
> the image manipulation(Rotate, resize etc).
> Then use the groundoverlay to put the image in Google Map.
>
> I have managed to use the GroundOverlay following the google map api
> doc. I don't know how to make the HTML5 Canvas and the Google map api
> working in pair and I couldn't find any tutorial or example.
>
> Is anyone has a guide or an idea how to achieve this?
>
> Cheers,
>
> Seb

-- 
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: Problem with listener map, marker and markerClusterer,

2012-01-16 Thread en4ce
i dont see your problem, maybe you did fixed it already but the
clusters and markers behave normally for me, might you play a bit with
the config for the clusters


On 13 Jan., 19:00, Volker S  wrote:
> my map is a interactive map for users with exotics palm. Normaly there
> put a new single marker in place where the plant is growing. For that
> job, the normaly map does it very well (www.palmenstandorte.de).
>
> But if I include the markerCluster (from Luke Mahe) the click-listener
> only trigger on 'map-click' - not on 'cluster-click'
>
> My first solution:
>                 google.maps.event.addListener(map, "click", function(event) {
>         marker = new google.maps.Marker({
>           position: event.latLng,
>           map: map,
>           draggable: true
>         });
>         map.setCenter(event.latLng);
>         map.setZoom(13) ;
>         google.maps.event.addListener(marker, "click", function() {
>           infowindow.open(map, marker);
>         });
>
> google.maps.event.addListener(markerClusterer,"clusterclick",function(clust 
> er)
> {
>                    var center = cluster.getCenter();
>                    var size = cluster.getSize();
>                    var markers = cluster.getMarkers();
>     });
>
>     });
> The result: only the job "set new marker" was done - even by a click
> of a clustered marker.
>
> My second solution:
> google.maps.event.addListener(map, 'click', function (event) {
>         if (!clusterclicked) {
>     clusterclicked = true;
>
> google.maps.event.addListener(markerClusterer,"clusterclick",function(clust 
> er)
> {
>                    var center = cluster.getCenter();
>                    var size = cluster.getSize();
>                    var markers = cluster.getMarkers();
>     });
>         }
>         else {
>             clusterclicked = false;
>         marker = new google.maps.Marker({
>           position: event.latLng,
>           map: map,
>           draggable: true
>         });
>         map.setCenter(event.latLng);
>         map.setZoom(13) ;
>         google.maps.event.addListener(marker, "click", function() {
>           infowindow.open(map, marker);
>         });
>         }});
>
> The result: only the trigger "click of a clustered marker" was done -
> but you can't set a new marker on the map 
> (http://http://www.palmenstandorte.de/de/cluster.php)
>
> The second solution I have find it on the net, with a set_time_out-
> function (http://stackoverflow.com/questions/2881150/google-map-api-v3-
> event-click-raise-when-clickingmarkerclusterer). Can anybody help me?

-- 
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: pay for google map api

2011-11-15 Thread en4ce
you got 25k map displays / day for free, every 1k more is 4$ as far as
i know

On 15 Nov., 08:52, Roi Friedman  wrote:
> Thanks
> And how much does it cost to use google map API ?

-- 
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: maps causing firewall to block me , DOS

2011-11-14 Thread en4ce
same here

On 14 Nov., 15:42, Rossko  wrote:
> > code at :http://www.photofields.co.uk
>
> Looks sensible enough.  What should we see?  I just get grey
> watermarked tiles, but that suggests I'm not blocked out (yet)

-- 
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: pay for google map api

2011-11-14 Thread en4ce
- yes you can have the map in russian
- gecoding is free BUT you need to display a map in any case
- there are limits / daily

On 14 Nov., 09:29, Roi Friedman  wrote:
> Hello,
> I want to build a business base on google maps. for that I will have to
> make lots of api queries.
> Does it cost money, and if yes - where can I see the prices?
>
> In addition, can I have those maps (and api results) in Russian language?
>
> Thank you in advanced,
> Roi.

-- 
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: Custom overlay disappears at certain zoom level

2011-11-08 Thread en4ce
i have the very same problem, any suggestions?

On 20 Sep., 01:59, Boris Rarden  wrote:
> It is still happening, I don't know how to fix this, and it shouldn't be
> hapenning -- it is a bug. Here's another demonstration:
>
> http://random.hypervolume.com/map_bug2.html

-- 
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: Google Street View Update

2011-10-14 Thread en4ce
your wrong, you are using the most up to date version of street view
available in the maps api v3, maps.google.com uses maps api v2 but
highly customized

On 14 Okt., 10:13, jesar james  wrote:
> I believe, I'm currently using the old version of Google Street View
> since the features of it are still 
> limited:http://dev.hotelsnearplace.com/singapore-flyer-41797.htm
> How can I turn it into the new, fully featured Google Street 
> View?http://maps.google.com/maps?q=1.289487,103.862846&layer=c&z=1...

-- 
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: Open info window using links from images in jcarousel

2011-10-07 Thread en4ce
are you kidding? why not just post a link to the solution ...

On 7 Okt., 07:32, Hank  wrote:
> I figured it out. I used jquery, I think:
>
> //
>
> It's pretty rad.
>
> On Sep 25, 8:10 pm, Hank  wrote:
>
>
>
>
>
>
>
> > My map includes code generated by Google's spreadsheets map wizard 
> > athttp://gmaps-samples.googlecode.com/svn/trunk/spreadsheetsmapwizard/m
> > I have modified the wizard's javascript code for my map to include a
> > customized version of the sidebar, which holds a list of images
> > instead of titles. The only problem: Instead of the wizard's
> > default sidebar that allows the user to click a title to open
> > an info window, I would like to modify the following snippet so that
> > the user can click on an —or  would also do the
> > trick, if possible—on my customized sidebar to open an info window on
> > the map:
>
> >       if(param_useSidebar == true) {
> >         var markerA = document.createElement("a");
> >         markerA.setAttribute("href","javascript:cm_markerClicked('" +
> > i +"')");
> >         markerA.style.color = "#00";
> >         var sidebarText= "";
> >         if(usingRank) {
> >           sidebarText += rank + ") ";
> >         }
> >         sidebarText += label;
> >         markerA.appendChild(document.createTextNode(sidebarText));
> >         sidebarDIV.appendChild(markerA);
> >         sidebarDIV.appendChild(document.createElement("br"));
> >         sidebarDIV.appendChild(document.createElement("br"));
> >       }
>
> > This modified snippet won't work:
>
> >         if(param_useSidebar == true) {
>
> >           var markerA = document.createElement("a");
> >           markerA.setAttribute("href","javascript:cm_markerClicked('"
> > + i +"')");
> >           var sidebarImage = document.createElement ("img");
> >           sidebarImage.setAttribute("src","");
> >           sidebarImage.id = "sidebar-image";
> >           sidebarImage.style.overflow = "hidden";
> >           sidebarImage.style.width = "120px";
> >           sidebarImage.style.height = "100px";
> >           markerA.appendChild(sidebarImage);
> >           sidebarImage += image;
> >           markerA.appendChild(document.createImageNode(sidebarImage));
> >           sidebarDIV.appendChild(markerA);
>
> >         }
>
> > My spreadsheet includes an image column instead of a title column,
> > which works finely. My columns from left to right read "rank,"
> > "latitude," "longitude," "image" (instead of title) and "description."
> > Here's one row:
>
> > 1     34.1293     -118.3052     
> > Description
>
> > All I need to figure out: How do I replace the anchor tag in the first
> > snippet so that the href links from an image instead of text in the
> > sidebar to open an info window?
>
> > I apologize for not providing a link to my map's Web page. My site's
> > still private, though if you'd like to have a look at it please let me
> > know your preference—credentials to use to login to the site, for
> > example—in accessing it. Thanks for your consideration!

-- 
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: Is there any support for Saving the current displayed Map as Image

2011-10-06 Thread en4ce
use the google static api that for, if you got some lat lngs you can
create images this way

http://code.google.com/intl/de-DE/apis/maps/documentation/staticmaps/

On 6 Okt., 07:18, Ravi Darji  wrote:
> Hi,
>
> I just wanted to know that is there any support for Saving the current
> displayed Map as Image.
>
> Thanks in Advanced
>
> Ravi Darji

-- 
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: memory leak when moving marker

2011-09-12 Thread en4ce
same for me, the page crashes... you did try to play around with the
intervals? maybe something bigger then 50 will help, did you check if
it crashes randomly or always on the same latlng? try to make a log to
see how it behaves

bests

On 11 Sep., 23:22, Felipe Andrade  wrote:
> I am having problems with memory when trying to move a marker through a
> large amount of points. My page is one where I have a single marker and a
> large array of LatLng objects (about 2800). I am using chrome 13.0.782.220,
> and after a while of the marker moving, the tab crashes. I suspect is it
> because of memory since I see it growing and growing once the page loads. I
> don't see why memory should increase so much since I am using a single
> marker, and moving it with setPosition.
>
> The page can be seen athttp://dl.dropbox.com/u/7020621/map1.html

-- 
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: dynamic circle in gmap api v3

2011-09-07 Thread en4ce
"So please snd me the code to implement this one."

thank you, that made my day, i wonder if you can be so kind to let me
work for you for free... pretty please ?

maybe thats a start: http://www.youspots.com/tests/circle.php

On 7 Sep., 13:49, PHP Developer  wrote:
> At least give me some ideas so that i can do it by myself
>
>
>
>
>
>
>
>
>
> On Wed, Sep 7, 2011 at 3:14 PM, Pil  wrote:
>
> > On Sep 7, 7:49 am, api developer  wrote:
> > >  So please snd me the code to
> > > implement this one.
>
> > This is no group where you can order code for free.
> > If you'd really find a company that makes money out of that, please
> > don't forget to share it.
>
> > --
> > 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.
>
> --
> *Satyajit Mondal*
> *PHP Developer*
> *Email : satyajitmondal@gmail.com*
> *Contact : 9433485683*

-- 
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: Gmap3 plugin

2011-09-06 Thread en4ce
--> gmap3 jquery plugin

i am just saying that most likely you wont get a good reply here

On 5 Sep., 21:17, coolmec  wrote:
> hello,
>
> thanks for the replay, but were the gmap3 forum ??
>
> thanks

-- 
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: Google EARTH API parser KML

2011-09-05 Thread en4ce
post a link please and write in english, read this:
http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/2b3f101fd509919e#

On 5 Sep., 17:35, abner galvez  wrote:
> Hallo, ich bin ein Programmierer macht etwa 3 Monaten bin ichmit der API von 
> Google Earth und Maps arbeiten ... und musste spiegelneine Route zwischen 2 
> Punkten auf der Erde API.Es tut dies unter folgender Adresse:
>
> http://maps.google.es/maps?saddr =   "direccion_origen" & daddr 
> ="direccion_destino" & output = kml & key = "key"
>
> die erzeugt eine KML mir die Route, die ich brauche ... aber das Problemist, 
> dass ich viel zu Text zu erzeugen, und erfüllt mich mit Informationen über 
> die Karte, die nicht gut aussehen ... dann muss ich diese KML und zeigen nur 
> lesenVersuchen Sie es mit XML-Leser, aber ich gab Fehler 
> (derlink) in die Funktionen von diesem Beispiel:
>
>  archivoXML =
>
>  xmlDoc = new window.XMLHttpRequest (); xmlDoc.open ("GET", archivoXML, 
> false); / / aca mich entrega elerror ... por el Link xmlDoc.send ("");
>
> Bitte ich brauche deine Hilfe ... Ich habe gesucht und nicht gefunden haben, 
> etwas, dass ich vielleicht in diesem besonderen.

-- 
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: Gmap3 plugin

2011-09-05 Thread en4ce
the plugin you are talking about got it´s own forum on their page,
maybe its better to ask there directly

On 5 Sep., 19:08, coolmec  wrote:
> Hello all,
>
> i am new in google maps api, i started to use gmap3 jquery plugin but i have
> some issues with that.
>
> - this plugin do not accept the shadow image for a custom marker !
> - i can not limit, the autocomplete on address field, to a specific region !
> - how to use google maps api natively with this plugin ?
> and some other minor problems...
>
> if ther someone how have experience with this plugin, please help

-- 
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: Any way to make POI visible but non-clickable?

2011-09-03 Thread en4ce
you post just prove my thoughts about this "feature"... no one wanted
it but still we got it while we need a ton of other things :/

we need weather, youtube, wiki, webcams!, real g.earth aso aso... i
just can pray that the v3 api team gets more people to work on the
features we really need

my suggestion would be, just turn that feature off and use the places
api (heres an example how i do it: http://youspots.com/?mapid=3824)

bests,
enrico

On 3 Sep., 09:19, Bob Greenberg  wrote:
> I've seen some info about the new POI feature in v3.6 (poi.business, etc).
> I understand I can turn these on/off with the visibility attribute.
> Is there any way to have the POI be displayed, but not be clickable?
> In the case of POI, what is the effect of visibility=simplified?
> regards,
> BobG

-- 
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: Examples of Maps with Checkboxes inside Map

2011-09-01 Thread en4ce
this should help:

http://code.google.com/intl/de-DE/apis/maps/documentation/javascript/controls.html#CustomControls

On 1 Sep., 09:48, Satpack Travel  wrote:
> Hi.
>
> I've got my map up and running. Checkboxes work (thanks all!). Only
> problem is that they are outside the map, which causes problems when
> viewing on a mobile because it messes with the formatting on a small
> screen (the zoom function drops off the bottom).
>
> So does anyone know of exampes where checkboxes are within / over the
> map? Have searched quite hard and looked at Maps API documentation but
> can't seem to translate their examples of those dropboxes into my
> checkboxes.
>
> My current version is AT:
>
> www.satpacktravel.com/API/api_14.html
>
> Thanks in advance for any help.
>
> Rob

-- 
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: Custom Controls flickering problem

2011-08-31 Thread en4ce
i didnt test my idea but you guys make it way to difficult... i would
try to use onmouseover and onmouseout on the map div it self, and a
function that set the controls on and of... that might work...

On 31 Aug., 11:07, Martin™  wrote:
> Hi.
>
> I think i'd look at adding a DOM event listener to the DOM element
> that contains the map instead of using any API events.
>
> The Map getDiv() method will give your code a reference to the DOM
> element.
>
> http://code.google.com/apis/maps/documentation/javascript/reference.h...
>
> The DOM events 'onmouseover' and 'onmouseout' will tell you if the
> mouse is within the map bounds or not.
>
> Martin.
>
> On Aug 31, 7:47 am, Shreerang Patwardhan
>
>
>
>
>
>
>
>  wrote:
> > Hello Pil,
>
> > I am the author of that example code and that is my blog only. And well, you
> > have got the problem right. Now how can we find a solution for the
> > flickering problem?
>
> > --
> > *Shreerang Patwardhan*
>
> > ***Personal website:* Spatial
> > Unlimited
>
> > On Wed, Aug 31, 2011 at 12:12 PM, Pil  wrote:
> > > Yes, that's why the author didn't provide an example but instead was
> > > using pictures. I'm always sceptical when there is no example
> > > available.
>
> > > This code is all too simple to work properly, because as soon as the
> > > cursor hovers over an object inside the map the mouseout listener
> > > fires and tries to execute disableDefaultUI: true. And because the
> > > cursor is still on the map the mousemove listener fires immediately
> > > afterwards and tries to execute  disableDefaultUI: false. The
> > > presumable result is that the controls are flickering as long as the
> > > cursor tries to execute conflicting statements.
>
> > > The solution is not as easy as it sounds, because you have to avoid
> > > that a mouseout event will be fired when the cursor moves over a child
> > > element.
>
> > > On Aug 31, 8:12 am, Shreerang Patwardhan
> > >  wrote:
> > > > Hello Group,
>
> > > > I put up an example to switch on and off the map controls on the mouse
> > > over
> > > > and mouse out event. Which means, if your mouse if over the map, the map
> > > > controls will be enabled and once the mouse is outside the map, the
> > > controls
> > > > will disappear.
>
> > > > You can find the code athttp://
> > > shreerangpatwardhan.blogspot.com/2011/07/playing-with-map-cont...
>
> > > > Now, the problem is that when the mouse pointer is over the controls, 
> > > > the
> > > > map controls become invisible and the mouse pointer keeps flickering
> > > along
> > > > with the street view control. How do I get around this problem?
>
> > > > Any help is greatly appriciated
>
> > > > -- *
> > > > Shreerang Patwardhan
>
> > > > **Personal website:* Spatial Unlimited<
> > >http://shreerangpatwardhan.blogspot.com/>
>
> > > --
> > > 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.

-- 
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: onclick zoom level

2011-08-29 Thread en4ce
how about just post a link and read THIShttp://groups.google.com/
group/google-maps-js-api-v3/browse_thread/thread/2b3f101fd509919e#

ty

On 29 Aug., 16:26, Jesus  wrote:
> Hi everyone, thanks for your help on this matter.
>
> Ok, here's what I got...
>
> on my JS file
>
> I'm defining a default zoom level like this:
>
> var defaultZoomLevel = 15;
>
> Then i've a function named setupAddress where I've:
>
>   if (typeof poiZoomLevel === 'undefined') {
>     zoomLevel = defaultZoomLevel;
>   } else {
>     zoomLevel = poiZoomLevel;
>   }
>
> and finally, I'm using an OnLoad function where I'm thinking that all maps
> are getting the default zoom level defined on my default value (15).
>
> function OnLoad() {
> setupAddress();
> mapDiv = document.getElementById(mapDivID);
> var myLatlng = new google.maps.LatLng(0,0);
> var myOptions = {
> zoom: zoomLevel,
> scrollwheel: true,
> disableDoubleClickZoom: false,
> center: myLatlng,
> mapTypeControl: true,
> mapTypeControlOptions: {
>   style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
>
> zoomControl: true,
> zoomControlOptions: {
>   style: google.maps.ZoomControlStyle.SMALL},
>
> panControl: false,
> mapTypeId: google.maps.MapTypeId.ROADMAP}
>
> map = new google.maps.Map(mapDiv, myOptions);
>
> infoBox();
>
> var geocoder = new google.maps.Geocoder();
>     var address = startAddress;
>     geocoder.geocode( { 'address': address}, function(results, status) {
>       if (status == google.maps.GeocoderStatus.OK) {
>         map.setCenter(results[0].geometry.location);
>     addressSet = 1;
> searchCenter = results[0].geometry.location;
>         getCategories(1);
> createMarker(searchCenter, 0, markerHTML, "pin");
> var trafficLayer = new google.maps.TrafficLayer();
> trafficLayer.setMap(map);
>     google.maps.event.addListener(map, "dragend", function () {
>        getCategories(0);
>     });
> if (mapExtra === true) {
> mapPost();}
> } else {
>
>         alert("Geocode was not successful for the following reason: " +
> status);
>       }
>     });
>
> }
>
> I'm trying to adjust a commercial piece of code to fit my needs, basically
> for the zoom value code, but I dont want to mess it up with it. If you think
> its possible to get the zoomlevel value include it on those on click events
> I do have on my html will be great. Thanks for your clarification abd help
> on this matter, now I know it can be done (what I need) I just need to
> figure it out and configure properly my code in order to have this
> functionallity working as need it.
>
> Thanks again for your help!

-- 
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: Can we add customized videos on our google page?

2011-08-23 Thread en4ce
so instead of a marker you want to place a video on the map?

On 23 Aug., 09:35, GMapHelp  wrote:
> Hello Everyone,
>
>  As we can place markers and popup info window, can we also add our
> personal videos on the map?
>
> Regards

-- 
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: Unable to Render a Map Marker

2011-08-23 Thread en4ce
same here, everything seems fine

On 23 Aug., 05:55, "geocode...@gmail.com" 
wrote:
> On Aug 22, 8:27 pm, Jordan Train  wrote:
>
> > Today I noticed that some of my apps were not rendering markers for
> > custom-defined marker images.  Everything was working fine before.  I
> > suspect some change was made to the API.  Anyone else having this
> > issue?
>
> I don't see 
> it.http://www.geocodezip.com/v3_markers_colored.htmlhttp://www.geocodezip.com/v3_markers_colored_3D.htmlhttp://www.geocodezip.com/v3_markers_normal_colored.html
>
>   -- 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: Compatibility with Internet Explorer ''google.gears.factory' is null or not an object'

2011-08-22 Thread en4ce
+1

but Christopher, what the hell this page is all about? everything is
all over the place... especially if you pan the map... wow, i never
was so confused with a map :D

On 22 Aug., 21:45, xelawho  wrote:
> > how can i stop the function doGeolocation from trying to perform in IE, can
> > i hide it from IE? are they if statements that will hide it? when i debug
> > this is what shows up.
>
> it seems to me like you should do browser detection (there's plenty of
> code examples available out there) and set up an alternative for IE to
> use. Something like
>
> if (IE) {
> function that tracks user by IP address
>
> } else {
> doGeolocation();
> }
>
> (although it may be worth pointing out that in IE7 it works fine, and
> firebug should detect an absence of gears as it is somewhat outdated
> and has not been available to firefox for some time now)

-- 
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: Weather now at maps.google.com

2011-08-20 Thread en4ce
http://code.google.com/p/gmaps-api-issues/issues/detail?id=3559&q=weather&colspec=ID%20Type%20Status%20Introduced%20Fixed%20Summary%20Stars%20ApiType%20Internal

On 19 Aug., 17:51, Winchester  wrote:
> I would vote for it as well
>
> On Aug 19, 4:46 am, en4ce  wrote:
>
>
>
>
>
>
>
> > Google released a weather layer today to maps.google.com, i wonder if
> > there is any chance to get it to work for the maps api?
>
> > some one ?
>
> > bests!

-- 
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: 2011/8/17 - New Release (3.6)

2011-08-20 Thread en4ce
http://code.google.com/p/gmaps-api-issues/issues/detail?id=3560

On 18 Aug., 01:33, Chris Broadfoot  wrote:
> On Wed, Aug 17, 2011 at 9:37 PM, en4ce  wrote:
> > btw, this clickable icons are really not consistent if you cant style
>
> the infowindow, the infowindows look like google, but our info windows
>
> > don't ... (same thing with panoramio anyway), of cause i can set this
> > function off but where is the point
>
> Could you file a feature request, please?
>
> Also, can you elaborate whether you'd like to use a custom overlay to
> display the business information (like InfoBubble), or whether you want to
> style the *content* of the InfoWindow?
>
> Thanks
> Chris

-- 
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: Weather now at maps.google.com

2011-08-20 Thread en4ce
http://code.google.com/p/gmaps-api-issues/issues/list?thanks=3559&ts=1313845275

but to be honest, i doubt they will do it quickly... since how long we
wait for the yt/wiki layer? see what i mean? i really have the
feeling the maps team is way too small :/

On 19 Aug., 17:51, Winchester  wrote:
> I would vote for it as well
>
> On Aug 19, 4:46 am, en4ce  wrote:
>
>
>
>
>
>
>
> > Google released a weather layer today to maps.google.com, i wonder if
> > there is any chance to get it to work for the maps api?
>
> > some one ?
>
> > bests!

-- 
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: Adding Sliding panel.

2011-08-19 Thread en4ce
yup, we want !

On 12 Aug., 23:08, Kesuke  wrote:
> If enough people are interested I will do a guide on how to replicate
> the maps.google.com side panel witj JQuery. It isn't as complicated as
> it seems, but it does have to be done in quite a precise way. Is this
> something people want?
>
> On Aug 12, 9:24 pm, Esa  wrote:
>
>
>
>
>
>
>
> > I see quite tricky to duplicate the behavior of the map when its size
> > is changed. Map doesn't move when the side panel is switched. However
> > its center changes. You can test it by zooming in.
>
> > You can either adjust the map size or you can float the side panel on
> > map and move the control elements. Both ways have many pitfalls.
>
> > It would be easier with v2 API. It has some additional options to zoom
> > focusing and control element positioning.

-- 
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: Introducing Glide Panel

2011-08-19 Thread en4ce
really nice but the script is so huge :/

On 11 Aug., 14:27, Pil  wrote:
> Just finished a glide panel that mimics the panel of Google Maps
> somewhat. But it's really cooler.
>
> Should be compatible with all supported browsers.
>
> And the most important: It's pure Javascript without using jquery and
> such...
>
> http://www.wolfpil.de/v3/glide-panel.html

-- 
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] Weather now at maps.google.com

2011-08-19 Thread en4ce
Google released a weather layer today to maps.google.com, i wonder if
there is any chance to get it to work for the maps api?

some one ?

bests!

-- 
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: How to add terrain to custom gmap

2011-08-19 Thread en4ce
this map type is called Relief not terrain, take a look at my page
youspots.com, we have such a layer and you can create it like this:

 var reliefMap = new google.maps.ImageMapType({
getTileUrl: function(a, b) {
  return "http://maps-for-free.com/layer/relief/z"; + b + "/row" +
a.y + "/" + b +
 "_" + a.x + "-" + a.y + ".jpg"; },
tileSize: new google.maps.Size(256, 256),
isPng: false,
minZoom: 0,
maxZoom: 11,
name: "Relief",
alt: "Relief layer"
  });

to enable the layer in a custom control do something like this:

map.mapTypes.set("relief", reliefMap);
map.setMapTypeId('relief');


On 19 Aug., 00:51, Niklas Rosencrantz  wrote:
> 
> The link to my map is montao.com.br is the map I want to make dynamic is
> attached with this message. I could mape a styled map but some features were
> undoable such as remove other countries than Brazil, the red dots for the
> city but recently it says the API was updated and now it's possible to add
> terrain to the custom map but I can't find a reference how to do it. If you
> follow the link you map the map and the javascript and maybe you know how to
> do it? Thank you /Niklas R

-- 
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: The behavior of Google Maps is different from last week regarding "target-densitydpi"

2011-08-19 Thread en4ce
did you try to use an older version like 3.5? if not try it

On 19 Aug., 07:26, Chris C <1952m...@gmail.com> wrote:
> I have the same question.  This week I cannot read my maps on the iPhone 4.
> But all versions of Google Maps seem to behave this way now, not just V3.6

-- 
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: 2011/8/17 - New Release (3.6)

2011-08-17 Thread en4ce
i am a bit disappointed, the last version was released like 1 month
ago we "just" see what we had within the places api anyway? what?
sorry, but was this really so impotent?

i just wonder, where is earth, where is the youtube / wiki layer,
where is the webcam layer ?

:S

btw, this clickable icons are really not consistent if you cant style
the infowindow, the infowindows look like google, but our info windows
don't ... (same thing with panoramio anyway), of cause i can set this
function off but where is the point

--enrico

-- 
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: Bug: overviewMapControl:true, and ImageMapType

2011-08-04 Thread en4ce
yeah esa i know, but i gave up to support the IE period, maybe with
the 10 but the beta dont look to good for me

On 4 Aug., 18:15, Esa  wrote:
> Confirmed. I cannot see anything wrong with your MapType definition.
> Probably you discovered a bug in api. Please file 
> it.http://code.google.com/p/gmaps-api-issues/issues/entry?template=Maps%...
>
> Nothing to do with the issue, but. You should delete the trailing
> commas in mapOptions object that IE users can access the page also.

-- 
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] Bug: overviewMapControl:true, and ImageMapType

2011-08-04 Thread en4ce
i am not sure since when this bug is in but it must be quite new or i
am just stupid

suddenly my open street map layer broke and i used quite some time
tracing where the error is, here is the problem: my openstreetmap
layer would not appear and give a error
finally i took a look on the map otions array so

if "overviewMapControl:true" the "map.mapTypes.set('OSM',osmMapType);"
method give a error and don't change the layers, when remove the
"overviewMapControl:true" everything works as expected

see here for an example:

bug: http://www.youspots.com/tests/overviewMapControltrue.php?bug=true
no bug: http://www.youspots.com/tests/overviewMapControltrue.php

bests!
-- en4ce

-- 
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: Marker Cluster icons displaying over single marker icons

2011-08-03 Thread en4ce
one single marker never should be in a cluster, seems there is a
problem with your clustering

please read the posting guidelines here and proved a link

-- en4ce

On 3 Aug., 02:33, Gwen  wrote:
> Hi Group,
>
> I have two types of markers, one set that clusters and a second that
> does not.
>
> Is there a way to have the nonclustered markers appear on top of the
> cluster markers like a higher z-index?.
>
> I've tried setting the z-index on the individual markers to be very
> high but this is no good.
>
> Any suggestions please?
>
> Cheers,
> Gwen

-- 
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: Can I access Street view images

2011-08-03 Thread en4ce
you can do something like:

this works for me

On 3 Aug., 12:11, CantD  wrote:
> Hello,
>
> I am currently involved in an academic project where we want to use the
> images from Google Street view. The project is an exercise game where the
> user walks/jogs and their digital avatar moves through a real world map. For
> the map we were hoping we could pull images from Google Street View and
> update the them as the user walks.Really I suppose we are hoping to get a
> URL to an image or set of tiles which we can then draw in the game, but we
> don't want to use Google Maps to draw this as we already have the game side
> of things done, so we are looking for the data from the API.  
> Can we do that with this API? If not is there any other API we could use?
>
> Thanks for any help.

-- 
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: JS files are not update when I save them

2011-07-30 Thread en4ce


for example

btw, check your .htaccess, could be that the server tells your browser
to not update the files ;)

normal this stuff looks like this:


ExpiresActive On
ExpiresByType image/x-icon "access plus 5184000 seconds"
ExpiresByType image/gif "access plus 5184000 seconds"
ExpiresByType image/jpg "access plus 5184000 seconds"
ExpiresByType image/jpeg "access plus 5184000 seconds"
ExpiresByType image/png "access plus 5184000 seconds"
ExpiresByType text/css "access plus 5184000 seconds"


# BEGIN Cache-Control Headers

  
Header set Cache-Control "max-age=5184000, public"
  
  
Header set Cache-Control "max-age=5184000, private"
  
  
Header set Cache-Control "max-age=216000, private"
  


On 28 Jul., 09:49, thebit  wrote:
> @geocodezip: the browser I use is FireFox
> @en4ce: can you explain me how I must to do to automatically reload FS
> files?

-- 
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: Problem implementing mapTypeIds

2011-07-29 Thread en4ce
i never liked this behavior, best is you do a custom map type
control... there should be a lot of easy to understand tutorials =)

On 28 Jul., 23:31, William  wrote:
> On Jul 29, 2:07 am, dondmcg  wrote:
>
> > I am trying to simply add
> > TERRAIN to the controls of my map
> >http://staging.nybg.org/science/geographic-area-programs.php
>
> > But no matter what I try I still only get the default roadmap and
> > satellite.
>
> on your map, when you select the roadmap maptype, then "Terrain" is
> available as a tickbox under the "Map".
>
> I think V3.3 is the only current version which still shows Terrain as
> separate button.
>
> But I'd expect V3.3 to be retired soon, with the schedule for the next
> release due early in August?
>
> ...

-- 
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: change scale on the embedded map

2011-07-26 Thread en4ce
what ? z is what ? z-index ? z-what ? zoom level?

On 24 Jul., 13:50, Giorgi Nanobashvili 
wrote:
> I want to embed google maps to my web-page. At the beginning the map must
> appear in scale z=0. than it must start changing the scale smoothly up to
> z=6. How can I arrange this effect?

-- 
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: How to fit map to screen with header and footer

2011-07-23 Thread en4ce
height: 90%; as style for the map did the job for me

On 23 Jul., 14:09, vas  wrote:
> How to manage CSS to fit google map API v3 to fit the screen WITHOUT
> VERTICAL SCROLL BAR?
> If I add header and footer, the map become too big and scroll bar
> appears on the right side of the page.
> Example is here:http://www.everdict.org/test/
>
> Thanks.

-- 
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: Is V3 slower V2???

2011-07-22 Thread en4ce
its all about the map size, map size of 1920*1080 and bigger need some
times to load but overall V3 is way faster then v2

On 22 Jul., 17:22, "geocode...@gmail.com" 
wrote:
> On Jul 22, 11:00 am, 123gotoandplay  wrote:
>
> > Hi all,
>
> > I am converting my maps form v2 to v3 but i notice v3 is a whole lot slower.
> > am i correct?
>
> The design goals as I understand them for v3 were to make it smaller
> and quicker than v2 (mainly to make it usable on mobile browsers).
>
> I haven't seen any obvious performance degradation with v3, but I
> haven't done any testing real performance testing either.
>
> Perhaps you could share the two pages you are comparing so you can get
> some feedback.
>
> A lot of the "built-in" functionality of v2 was left to the developer
> to implement, so it is possible that your implementation could be
> optimized as well.
>
> > do you have some similar experience?
>
> No.
>
>   -- Larry
>
>
>
>
>
>
>
>
>
> > regards

-- 
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: error "403 forbidden", help

2011-07-21 Thread en4ce
to use geocoding you MUST show a map, everything else is against the
TOS

On 21 Jul., 14:42, "Katana.S"  wrote:
> hi all.
> I'm developing an ecommerce site with product geolocation.
> i developed a PHP procedure which queries google maps for coordinates
> from a given address.
> Procedure worked well, then i put it into CRON table of the site
> (which, actually, never start due to config error).
> When i manually started it, i discovered that google is responding
> with "403 forbidden" in the header, and no response content at all. If
> i run same script from another server, it responds correctly.
> I think site IP/domain has been blacklisted. But how i can know it?
> How can i solve this situation?
>
> here's the link with geocode test (only 1 time query, main procedure
> is embedded into CMS so i cannot post):
>
> http://www.soloaffittivacanze.it/test_geolocalizza_1.php
>
> Thanks to all

-- 
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: How can I only show new markers that are only in a certain radius around the center?

2011-07-21 Thread en4ce
you  might use this php wise: (untested)

SELECT id, ( 3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) *
cos( radians( lng ) - radians(-122) ) + sin( radians(37) ) *
sin( radians( lat ) ) ) ) AS distance
FROM markers HAVING distance < 25 ORDER BY distance LIMIT 0 , 20;


Here's the SQL statement that will find the closest 20 locations that
are within a radius of 25 miles to the 37, -122 coordinate. It
calculates the distance based on the latitude/longitude of that row
and the target latitude/longitude, and then asks for only rows where
the distance value is less than 25, orders the whole query by
distance, and limits it to 20 results. To search by kilometers instead
of miles, replace 3959 with 6371.


On 21 Jul., 14:35, ArnMan  wrote:
> I am working on a page that has a custom google map, that checks mysql for
> current longitude and latitude, and centers the map on that.
> I would like to be able to show markers that are a certain distance away
> from the center marker, from other locations in the database
> I have a mysql database that has locations. and another table that includes
> the center location, which changes. I currently have a little green marker
> that shows where the center location is, and moves when the long and lat
> changes.
> Example.
> Lets say I am at 0/0 Long/Lat
> and I want only the markers shown if their coordinates are within
> 5/5
> -5/5
> -5/-5
> 5/-5
>
> 
>
> Is there anyway to use php, or javascript to check inside those coordinates
> everytime the page loads and place a marker where is a location?
>
> Thank you in advance

-- 
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] can somebody build a list of good geoRSS feeds

2011-07-19 Thread en4ce
as the title say... a list really would help out developers to enrich-
en their map applications

-- 
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: JS files are not update when I save them

2011-07-17 Thread en4ce
muhahahhah, the IE is the best program to download a browser =)


you can load the js file with a random parameter, this will force to
reload the script any time

On 17 Jul., 12:50, "geocode...@gmail.com" 
wrote:
> On Jul 17, 6:24 am, thebit  wrote:
>
>
>
>
>
>
>
>
>
> > Hello,
> > I have a strange problem: in my maps application I am writing the js
> > files are not update when I save them.
> > Before to changing my applications structure the JS file are correctly
> > updated.
> > In the original application I put directly the JS functions in the
> > main file and every things works.
> > Now, I am rewriting this application in way to obtain a more readable
> > code by writing every funcion in a seperated file, eg: function
> > insertMarker() put in a "insertMarker.js" file, etc for each
> > functions.
> > The problem is that: if I try to edit a file js (putting in the
> > following path C:\xampp\htdocs\application\js\") and refresh the page
> > (ctrl+F5 to empty the cache) the result does not change and if I
> > browse to this file, it is not change but if I press ctrl+F5 in this
> > file, it changes and every things works.
> > Why?
>
> Wild guess (you didn't provide a link or enough information to do
> anything else).
>
>  You are using IE and haven't tried a real browser.
>
>   -- Larry
>
>
>
>
>
>
>
>
>
> > Thank you in advance for your support.
> > Regards,
> > thebit

-- 
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: Earth on Google Map API V3

2011-07-16 Thread en4ce
+1 !

On 16 Jul., 10:15, sgiddings  wrote:
> Hello,
>
> Interesting post and thoroughly misleading example !
>
> The example simply states that all you have to do is "just instantiate
> a new GoogleEarth object".
> After further reading, it would appear that "all you have to do
> is" 
> 1. sign up for a jsapi key
> 2. include the jsapi script in your page via HTTPS !
> 3. include the earth script in your page
> 4. import the earth namespace into your code
> and then and only then can you "just instantiate a new GoogleEarth
> object".
>
> I admit to being rather disappointed as up to now, with the maps v3
> api, it was not essential to have signed up for a key.
> If maps v3 no longer requires a key, shouldn't the earth utility
> library follow the same rule ?
>
> On Jul 15, 2:23 pm, Rossko  wrote:
>
>
>
>
>
>
>
> > Have you 
> > seenhttp://google-maps-utility-library-v3.googlecode.com/svn/trunk/google...

-- 
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: Crashing browsers :)

2011-07-09 Thread en4ce
i wonder if that component is against the TOS of google maps because
you want ppl to pay for that component...

12-Month subscription for Hotspots
  •  €39 EUR ≈ $49.53 USD
  •  365 Days

http://compojoom.com/subscriptions-a-downloads

On 9 Jul., 13:18, THE_AI  wrote:
> Hey guys,
> I have finally released my joomla component - hotspots :). Here is the
> demo:http://demo.compojoom.com/hotspots
>
> I got few users complaining that when they click on a marker in street
> mode, they don't see the infoWindow. The infoWindow opens, but in the
> map plane and not the street map plane.
>
> So, after reading the documentation about Overlays with street 
> map:https://code.google.com/apis/maps/documentation/javascript/services.h...
>
> I've corrected my createInfoWindow function to this:
>
>         createInfoWindow: function(marker, hotspot) {
>                 return (function() {
>                         var container = 
> this.infoWindowToolbarActions(hotspot);
>                         var text = new Element('div', {
>                                 style: 'width: 300px;',
>                                 html: hotspot.description
>                         });
>                         container.inject(text);
>                         this.infoWindow.setOptions({
>                                 'content': text ,
>                                 'position':new 
> google.maps.LatLng(hotspot.latitude,
> hotspot.longitude )
>                         });
>
>                         var panorama = this.map.getMap().getStreetView();
>                         if(panorama.getVisible()) {
>                                 
> this.infoWindow.open(panorama,marker.markerObj);
>                         } else {
>                                 
> this.infoWindow.open(this.map.getMap(),marker.markerObj);
>                         }
>
>                 }.bind(this));
>         },
>
> now when I'm street mode and I click the marker, the infowindow shows
> in street mode. If I close the infowindow and after that close the
> street mode, then click on the infowindow in map view - everything
> works fine.
>
> But if leave the infowindow open in street mode and just close the
> street mode, then try to open the infowindow in the normal map view,
> the browser just crashes. I've tested it with firefox and chrome.
>
> In firefox the first time I try it, I get this message:
>
> A script on this page may be busy, or it may have stopped responding.
> You can stop the script now, open the script in the debugger, or let
> the script continue.
>
> Script:http://maps.gstatic.com/intl/en_us/mapfiles/api-3/5/9/main.js:53
>
> and firebug's console shows this:
>
> uncaught exception: 2.9828892165819886e+144
>
> The second time I try it, it just crashes...
>
> In chrome it chrashes already on the first time.
>
> You can test the behavior here:http://labs.compojoom.com/index.php/hotspots
>
> Any ideas? Am I doing anything wrong? Should I automatically destroy
> the infoWindow when switching between street mode and normal map mode?

-- 
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] thanks broady and team - auto complete field now works as it should

2011-07-04 Thread en4ce
so like every day i check my page and what i have to see ? the auto
complete field got its style back

so recent changes to the places api
- appended classes or styles are now visible as it should be on the
auto complete field

cheers, good work guys!

-- 
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] thanks brody and team - autocomplet now works as it should

2011-07-04 Thread en4ce
so like every day i check my page and what i have to see ? the auto
complete field got its style back

so recent changes to the places api
- appended classes or styles are now visible as it should be on the
auto complete field

good work guys!

-- 
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: how can I convert my google maps project v2 to v3?

2011-07-03 Thread en4ce
learn the basics if v3 and port the code

On 3 Jul., 12:47, Khaled Jendi  wrote:
> hi,
>
> I have huge tracking project coded in google maps v2, now I have
> assigned the responsibility to change the version of google maps from
> v2 to v3, how can I do that? or what are the steps to do this?
>
> thanks for help

-- 
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 good tutorial for Ajax using PHP and MySQL

2011-07-01 Thread en4ce
> Yes its not the most powerful server.

sure thing =)

-- 
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 good tutorial for Ajax using PHP and MySQL

2011-07-01 Thread en4ce
>>Not a full tutorial, but a working example
>>http://m.nearby.org.uk/map.php

you marker loading time is extrem! on my page its like 1 second for
3k
markers  or maybe your server is just slow, i didn't checked the
source

i wonder why this topic pops up so often this week, if you guys dont
understand javascript / ajax html and php you gonna fail! or it will
take you a serious amount of learning... in most of the cases i think
you promised your boss or partner that you can do it and now having
trouble
just get some1 who know what hes doing and this is a matter of 1 or
2h, without copying samples together (no offence)

@bob, i really liked the zoom out part! very creative :D

bests

On 1 Jul., 12:04, Bob Torzynski  wrote:
> I'm not sure this is what you want, but the following 
> link:http://www.zgroks.com/ReadWriteMarkers.htmlincludes a working example
> that allows any user to add markers to the map and stores the markers
> on an SQL database. After the marker is 'saved' to the SQL database it
> displays a generic marker *until* the user re-loads the page. Then it
> shows the 'new' marker. It's based on the tutorial that you cite along
> with the other related one (one reads from the SQL database and one
> writes to the database). It uses AJAX and PHP with v3.
>
> This example does not show the selected icon until the page is
> refreshed which sounds like what you want. However, if zoom and center
> of the map were saved prior to a refresh but after the new marker was
> added, it would be more responsive in terms of the AJAX refresh (as it
> is when the user refreshes the map it goes to the default zoom and
> center even though the new markers are added).
>
> My apologies if this is confusing but most of the work is done in the
> main javascript file which you can easily view at the linked site. The
> difficult part for me was combining the two examples into a single
> script into one that reads and writes. The PHP files that are used in
> my example are basically exactly the same as the ones in the
> example(s) you cite, so using the main script might be a starting
> point for improvement to my attempt.
>
> Regards,
> Bob
>
> On Jun 30, 2:24 pm, Bryn Kaufman  wrote:
>
>
>
>
>
>
>
> > I foundhttp://code.google.com/apis/maps/articles/phpsqlajax_v3.htmlandit
> > works fine but it only loads the data once.
>
> > Ajax is great for refreshing the data without having to reload the page, yet
> > this demo does not show how that would be done.
>
> > I tried putting an Event Listener to load the data more dynamically but I am
> > getting some errors so I would love to start from a working tutorial that
> > shows how to do this.
>
> > Is there a tutorial that uses Ajax to dynamically load new data using PHP &
> > MySQL based on an event such as when the user moves the map or clicks the
> > mouse?

-- 
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 good tutorial for Ajax using PHP and MySQL

2011-07-01 Thread en4ce
you marker loading time is extrem! on my page its like 1 second for 3k
markers  or maybe your server is just slow, i didn't checked the
source

i wonder why this topic pops up so often this week, if you guys dont
understand javascript / ajax html and php you gonna fail! or it will
take you a serious amount of learning... in most of the cases i think
you promised your boss or partner that you can do it and now having
trouble

just get some1 who know what hes doing and this is a matter of 1 or
2h, without copying samples together (no offence)

btw, i really liked the zoom out part! very creative :D

On 1 Jul., 01:04, Barry Hunter  wrote:
> Not a full tutorial, but a working examplehttp://m.nearby.org.uk/map.php
> might help?
> (Its an app I made for personal use, so its not particully polished)
>
>
>
>
>
>
>
> On Thu, Jun 30, 2011 at 7:24 PM, Bryn Kaufman  wrote:
> > I foundhttp://code.google.com/apis/maps/articles/phpsqlajax_v3.htmland
> > it works fine but it only loads the data once.
>
> > Ajax is great for refreshing the data without having to reload the page,
> > yet this demo does not show how that would be done.
>
> > I tried putting an Event Listener to load the data more dynamically but I
> > am getting some errors so I would love to start from a working tutorial that
> > shows how to do this.
>
> > Is there a tutorial that uses Ajax to dynamically load new data using PHP &
> > MySQL based on an event such as when the user moves the map or clicks the
> > mouse?
>
> > --
> > 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/-/dEPOJ1FyeQIJ.
> > 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: Static Map in Facebook feed

2011-07-01 Thread en4ce
>>You really need to know what problem FB servers perceive when fetching
static maps, and only FB will tell you that.

i tried to figure it out, the length of the url is not the problem, i
played a lot on that but the result stay´s the same, maybe there are
servers within fb that break the thing, maybe not i see if i can
find a forum within fb and ask the needed questions, if ill find
something useful ill post it up here

cheers! thanks for the effort

On 1 Jul., 02:07, Rossko  wrote:
> > so i guess we should
> > write the fb support/forum?
>
> Probably.
> *if* the problem is about quotas, you may be able to ask Google to
> 'whitelist' Facebook's servers.  Of course they might say "no, that
> isn't an intended usage"
>
> But perhaps it isn't about that - perhaps something else upsets FB,
> like a slow response.  I doubt its about URL lengths or character
> content or it would be consistent for a given map... unless ...
> Possibly it's only one or two out of many FB servers that have an
> issue, I guess thay must have a distributed platform.
>
> You really need to know what problem FB servers perceive when fetching
> static maps, and only FB will tell you that.

-- 
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: Static Map in Facebook feed

2011-06-30 Thread en4ce
and you are most likely 100% percent right with that (as usual), this
was my conclusion as well BUT this is annoying ^^ so i guess we should
write the fb support/forum?

On 30 Jun., 22:54, Rossko  wrote:
> > here it works:
>
> >http://developers.facebook.com/tools/lint/?url=http%3A%2F%2Fwww.yousp...
>
> Oddly, it didn't for me.  Or at least, the thumbnail on the 'URL
> Linter' page didn't.
> If I click the thumbnasil's placeholder rectangle, it opens a link to
> the "real" static map which works just fine - for me.   Does that work
> for everybody else??  If so, then Static Maps works fine.
>
> What is supposed to be shown in the preview/thumbnail isn't a static
> map, its some image served from Facebook
> http://external.ak.fbcdn.net/
> safe_image.php?d=AQAFP-1nW  etc.
>
> Of course it is supposed to be the static map, but as fetched and
> processed and maybe cached by FB servers.
>
> I'll hazard a guess that FB servers are going over quota and don't
> always get an image from static maps.  So far as I can tell, static
> maps aren't intended to be processed server-side, in fact that is
> prohibited for ordinary people.

-- 
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: Static Map in Facebook feed

2011-06-30 Thread en4ce
there you go: http://dl.dropbox.com/u/3179336/youspots/fbstatic.jpg

but prolly this is the best example:

here it works:

http://developers.facebook.com/tools/lint/?url=http%3A%2F%2Fwww.youspots.com%2Fen%2Ffind-spots.html%3Fmapid%3D3042%26action%3Dgo

here not:

http://developers.facebook.com/tools/lint/?url=http%3A%2F%2Fwww.youspots.com%2Fen%2Ffind-spots.html%3Fmapid%3D2720%26action%3Dgo

if the picture appears in lint, it appears in the users profile and
visa vis

bests



On 30 Jun., 20:34, Rossko  wrote:
> > you can see some examples 
> > there,http://www.facebook.com/profile.php?id=10318414658
>
> I don't see any static map there.  I checked the source, and there is
> no  or other tag with a static map href.

-- 
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: Static Map in Facebook feed

2011-06-30 Thread en4ce
there you go:

http://dl.dropbox.com/u/3179336/youspots/fbstatic.jpg

On 30 Jun., 20:34, Rossko  wrote:
> > you can see some examples 
> > there,http://www.facebook.com/profile.php?id=10318414658
>
> I don't see any static map there.  I checked the source, and there is
> no  or other tag with a static map href.

-- 
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: Sidebar On Map Is Frying My Brain .. Little Help please ^^

2011-06-30 Thread en4ce
well, the dropdown is empty for me (chrome) and you have js errors
when clicking the boxes

Uncaught ReferenceError: boxclick is not defined
testing.php:173
Uncaught ReferenceError: boxclick is not defined
2testing.php:174
Uncaught ReferenceError: boxclick is not defined

hm, skatespots? can you tell me a lil bit more about that?

On 30 Jun., 11:13, JustaSponge  wrote:
> Hello,
>
> I am trying to build a script that pulls in data from a database using
> php/mysql. And I want to create a sidebar with the locations i pull
> in. Kind of like the example thats here  ---V
>
> http://www.geocodezip.com/v3_MW_example_map15c.html
>
> I am able to pull in data and display the locations on my map just
> fine ... but the sidebar on the other hand is giving me trouble...
> been at it for 2 days now XD (probably because im learning
> javascript as I go along >.>...)
>
> Here's a link to my script
>
> http://onlineworkplace.info/googlemaps/testing.php
>
> Any help would be appreciated
>
> Thanks

-- 
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: Static Map in Facebook feed

2011-06-30 Thread en4ce
you can see some examples there, 
http://www.facebook.com/profile.php?id=10318414658

the main problem is that facebook parse the link as well (so the
picture is not being loaded in the profile), i think the error is
within fb ;)

On 30 Jun., 02:16, Rossko  wrote:
> Doesn't really help.  What counts is what gets delivered to the end-
> viewers browser, and no-one has yet revealed that or given anyone an
> opportunity to see.

-- 
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: Static Map in Facebook feed

2011-06-30 Thread en4ce
haha, i have the same problem, some times it works, sometimes not, i
gave up to understand this, the pic is always available anyways *gosh

do you know facebook lint? there you can check the behavior quite
well: http://developers.facebook.com/tools/lint/

On 30 Jun., 02:16, Rossko  wrote:
> Doesn't really help.  What counts is what gets delivered to the end-
> viewers browser, and no-one has yet revealed that or given anyone an
> opportunity to see.

-- 
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: Custom icon not working on static map

2011-06-30 Thread en4ce
try a less deep path on your server, i also noticed there are 2
"aya/", when i remove one of these the pic gets displayed instead of
the cant compute error msg from google...weird

On 29 Jun., 16:13, Massimiliano Biffi  wrote:
> Hi,
> I would like to show a custom icon on a static map.
>
> My icon is on a public URL, and I can get it with the browser. It is a 32x32
> png image.
> Once I try to show it on a static map the standard pin is displayed instead.
>
> Here's the static map URL:
>
> http://maps.google.co.uk/maps/api/staticmap?zoom=15&sensor=false&mapt...51.3983681000963,-.125373116368881
>
> Any ideas?
> Thanks and regards
>
> Massi

-- 
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: Custom icon not working on static map

2011-06-30 Thread en4ce
here is an example:

http://maps.google.com/maps/api/staticmap?size=140x80&markers=icon:http://youspots.com/images/marker/small_marker.png|46.92111788217831,10.0591004327066&sensor=false&maptype=hybrid

On 30 Jun., 10:57, Rossko  wrote:
> Actually I think I spoke tosh and the colon is okay; nevertheless it
> would help to see the real thing.

-- 
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: Places Autocomplete JS - The pac-container changed dom-position recently

2011-06-29 Thread en4ce
yeah i saw this as well, searched for notices but there are none, but
i think the behavior as it is right now is better then before even
though the styles from the text field are still not applied

On 29 Jun., 13:02, Johannes Schill  wrote:
> Hello,
>
> Some time between thursday and today the pac-container with the autocomplete
> search result, changed its position in the markup. Earlier it was inserted
> right after the input-text-element its monitoring, but now its added just
> right before the .
>
> Example.
>
> Earlier:
> 
>    irrelevant markup 
>   
>   ...
>    more markup 
> 
>
> Today:
> 
>    irrelevant markup 
>   
>    more markup 
>   ...
> 
>
> Has there been any changes and where can i read about those?
>
> Thanks!
>
> Johannes

-- 
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: How to hide and show multiple routes for 20 addresses

2011-06-28 Thread en4ce
may just the wrong approach, why not geocode every rout when hovering/
click a pin?, there is no need to set it visi or invisible ;) (yes,
its fast enough ~ usually)

On 28 Jun., 18:55, frank  wrote:
> My programmers are having a hell of a time figuring out one feature that I
> thought you might be able to help with.
>
> I have a home search site.
>
> It allows the user to enter in 1 work address. When they do a search it
> currently shows the distance in miles to each home for sale. (in a list
> below it)
>
> But now I want it to show the 20 homes for sale and when you mouseover each
> pin, I want it to show the driving directions (the lines on the map) from
> the selected home to the work.
>
> But they can't for their life figure out how to hide and show the lines.
> They can have all 20 lines show up, but not hide and show on mouseover.
>
> This solution did not work:
> "Plot all 5 routes with opacity zero. When a mouseover occurs use
> .setStrokeStyle to change the opacity to make it visible. When a mouseout
> occurs use setStrokeStyle to set the opacity back to zero."
>
> Any suggestions?

-- 
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: About Storing markers

2011-06-28 Thread en4ce
wow, the 1st troll posting i am reading here :D, i often was so close
to do something similar hahah

On 28 Jun., 19:00, Martin™  wrote:
> LOL
>
> On Jun 28, 12:18 pm, en4ce  wrote:
>
>
>
>
>
>
>
> > how familiar are you with php/ajax/javascript?
>
> > if you want this fast and for a client you better get a freelancer
> > doing the job (in case, write me a email, cheers)
>
> > On 28 Jun., 10:13, Rohan Shah  wrote:
>
> > > hi all,
> > > i am new to this community.
>
> > > Can i anyone help me with storing markers to the map so that every
> > > time map is loaded in the browser it shows all the pre-defined
> > > markers... which may help user get to nearest marker place from his
> > > current location.?

-- 
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: About Storing markers

2011-06-28 Thread en4ce
how familiar are you with php/ajax/javascript?

if you want this fast and for a client you better get a freelancer
doing the job (in case, write me a email, cheers)

On 28 Jun., 10:13, Rohan Shah  wrote:
> hi all,
> i am new to this community.
>
> Can i anyone help me with storing markers to the map so that every
> time map is loaded in the browser it shows all the pre-defined
> markers... which may help user get to nearest marker place from his
> current location.?

-- 
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: Problem mit addListener bei Markern

2011-06-22 Thread en4ce
alter!

erstens: lese die TOS des forums
zweitens: poste einfach einen link (falls du keinen webspace hast --
>dropbox und gut is)
thrid: SPEAK ENGLISH !

On 22 Jun., 18:01, "geocode...@gmail.com" 
wrote:
> Please read Pil's post again. Particularly this part:
>
> > > This is no invitiation to post the whole code but a hint to read the
> > > posting guide lines and post a link.
>
>   -- Larry
>
> On Jun 22, 8:53 am, Johannes <3nj0...@googlemail.com> wrote:
>
>
>
>
>
>
>
> > Hi Pil,
> > thanks for reply!
>
> > The Code which i use to initialize:
>
> > var map;
> > var markersArray = [];
>
> > function initialize() {
> >   var haightAshbury = new google.maps.LatLng(51.151786,9.115039);
> >   var mapOptions = {
> >     zoom: 8,
> >     center: haightAshbury,
> >     mapTypeId: google.maps.MapTypeId.ROADMAP
> >   };
> >   map =  new google.maps.Map(document.getElementById("map_canvas"),
> > mapOptions);
>
> >   google.maps.event.addListener(map, 'rightclick', function(event) {
> >     addMarker(event.latLng);
> >   });
> >   google.maps.event.addListener(marker, 'click', function() {
> >     //markerClick(this);
> >     alert("test");
> >   });
>
> > }
>
> > function markerClick( mark )
> > {
> >     for ( var m = 0; m < markersArray.length; ++m )
> >     {
> >         if ( markersArray[m] == mark )
> >         {
> >              map.set_center(store_locations[m]);
> >              map.set_zoom(16);
> >              return;
> >         }
> >     }
>
> > }
>
> > function addMarker(location) {
> >   marker = new google.maps.Marker({
> >     position: location,
> >     map: map
> >   });
> >   markersArray.push(marker);
>
> > }
>
> > // Removes the overlays from the map, but keeps them in the array
> > function clearOverlays() {
> >   if (markersArray) {
> >     for (i in markersArray) {
> >       markersArray[i].setMap(null);
> >     }
> >   }
>
> > }
>
> > // Shows any overlays currently in the array
> > function showOverlays() {
> >   if (markersArray) {
> >     for (i in markersArray) {
> >       markersArray[i].setMap(map);
> >     }
> >   }
>
> > }
>
> > // Deletes all markers in the array by removing references to them
> > function deleteOverlays() {
> >   if (markersArray) {
> >     for (i in markersArray) {
> >       markersArray[i].setMap(null);
> >     }
> >     markersArray.length = 0;
> >   }
>
> > }
>
> > This code is available from the google examples. I think the problem
> > is caused by using the marker array? Before i had another way to set
> > markers, without pushing it into an array - and the listener worked!
> > Now, he is simply doing nothing :/
>
> > greets jo
>
> > On Jun 22, 2:32 pm, Pil  wrote:
>
> > > On Jun 22, 1:41 pm, Johannes <3nj0...@googlemail.com> wrote:
>
> > > > Wo könnte das Problem liegen?
>
> > > In your code which we can see only partially.
>
> > > Where is marker defined? What does the function addMarker() do and
> > > where is it?
> > > Is map a global or a local variable? What are the chars after the last
> > > brace for? Is your HTML valid?
>
> > > This is no invitiation to post the whole code but a hint to read the
> > > posting guide lines and post a link.

-- 
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: Why?

2011-06-22 Thread en4ce
And these are examples of where you should not put a semicolon:

if( x < 5 ) {
  x++;
};

this is correct but just by the way

On 22 Jun., 16:14, Barry Hunter  wrote:
> On Wed, Jun 22, 2011 at 7:38 AM, Abhishek Bhattacharya
>
>  wrote:
> > Thanks a lot, Mike.
> > I was unaware of the "diff" and "cmp"!
> > But, one question,
> > after we've defined the "LatLng" coordinates, there's a "semi-colon" in the
> > original code, but, it works without the code.
>
> Not really a maps question, but general javascript syntax
>
> http://www.howtocreate.co.uk/tutorials/javascript/semicolons
>
>
>
>
>
>
>
>
>
> > Am I right toward this? If yes, why is it then given in the original code?
> > Thanks,
>
> > Abhishek
>
> > --
> > 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/-/1TqW-KoCjiMJ.
> > 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: Απ: Re: google map apis v3

2011-06-21 Thread en4ce
ahh =D good asp pages :D, so many nice memorys (NOT!)


On 21 Jun., 09:20, "geocode...@gmail.com" 
wrote:
> On Jun 20, 11:47 pm, mlv  wrote:
>
> > after a lot of search we found out the problem, i honestly dont know why
> > this happened bu we believe that google changed something,we are using
> > asp.net we used to have the div witth the map under the body->form->. now we
> > moved the map div under the body and above the form, removed the
> > position:absolute and it worked. we tried your recommendation with the
> > version but it didnt work( we checked3.3, 3.4 and ofc 3.5)
>
> Don't think it was a change by google then, must have been a change to
> your page, which you imply was not the case, did you try a known
> previously working version with those earlier versions?.  When did you
> move the map into the form?
>
>   -- Larry
>
>
>
>
>
>
>
>
>
> > thks

-- 
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: Get "map control styles"

2011-06-21 Thread en4ce
why would you want that anyway? just create a custom control and
that's it... you want to animate this controls ?

On 21 Jun., 12:36, Paul Smith  wrote:
> It seems from other posts that it is not possible to get hold of the
> "style" of the various controls.  For example the "how to create a
> custom control" demo, produces buttons which look very out of place
> compared to the standard "Map/Satellite" buttons.
>
> If the Google APIs are to be used to create professional looking
> output, these there has to be consistent styles, if only because I
> thought the whole point was whether the created site was on Chrome,
> Firefox, IE or some smart phone, it all should look consistent against
> the capabilities of the platform.
>
> This is only possible if the customer control, and any sub-menus etc
> (think "Terrain" below "Map") automatically change in-line with the
> standard Google controls.
>
> So come in on Google, give us a way to produce buttons which just
> "learn" the current style.
>
> Papadeltasierra

-- 
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: Map not showing in Opera

2011-06-21 Thread en4ce
win 7 64bit, opera 11.11

pil just ment that you maybe try to use a variable inside a function
and is not accessible within this function (like map)

On 21 Jun., 13:31, Edward  wrote:
> I'll look into validating immediately. Could you please explain the
> global variable thing a bit further or give an example? Not sure where
> to start really.
> Thank you for taking the time!
>
> /ws
>
> On 21 Juni, 13:22, Pil  wrote:
>
>
>
>
>
>
>
> > Try to use valid HTML
>
> >http://validator.w3.org/check?uri=http%3A%2F%2Fwww.thetube.se%2Fhem%2...
>
> > Try to declare a global variable like map accurately outside of any
> > function.
>
> > On Jun 20, 5:22 pm, Edward  wrote:
>
> > > This map is visible in all browsers except Opera:
>
> > >http://www.thetube.se/hem/replokaler/
>
> > > Having a hard time figuring out why, I'd really appreciate some help
> > > on this!
>
> > > Thanks,
> > > Edward

-- 
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: Map not showing in Opera

2011-06-20 Thread en4ce
works for me, no js errors either

On 20 Jun., 17:22, Edward  wrote:
> This map is visible in all browsers except Opera:
>
> http://www.thetube.se/hem/replokaler/
>
> Having a hard time figuring out why, I'd really appreciate some help
> on this!
>
> Thanks,
> Edward

-- 
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: Street View issue with Firefox 5

2011-06-19 Thread en4ce
Firefox 5 is still in beta so this can happen, i suggest to make a bug
report

On 18 Jun., 12:03, Epizentrum  wrote:
> Hi, inhttp://www.dafmap.de, FF5 does not show the Street View tiles.
> It throws the following exception for each tile it wants to load:
>
> uncaught exception: [Exception... "Failure arg 5
> [nsIDOMWebGLRenderingContext.texImage2D]"  nsresult: "0x80004005
> (NS_ERROR_FAILURE)"  location: "JS frame 
> ::http://maps.gstatic.com/intl/de_de/mapfiles/api-3/4/14/main.js::
> RD :: line 78"  data: no]
>
> Known issue with FF5? Is there a workaround? It works with Safari 5 on
> Mac OS X. I haven't checked other browsers/OSes, yet.

-- 
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: Google Map and online stores

2011-06-19 Thread en4ce
try places: 
http://gmaps-samples-v3.googlecode.com/svn/trunk/places/places-search.html

On 18 Jun., 23:27, kypriakos  wrote:
> HI all,
>
> Google maps can be mashed with many online services, from real estate
> to grocery stores etc.
> I have not been able to find many of such services - I want to be able
> to find the location of the
> closest market to a target device and be able to check if they have
> particular items available.
> Anyone can suggest any links for this? The ProgrammableWeb does not
> have much either.
>
> Thanks

-- 
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 markerclusterer and markermanager

2011-06-17 Thread en4ce
there are methods within marker cluter to remove or add markers, just
call the right function in the right spot

btw "i dont publish is because this and that" wont get you much
help ;) use dropbox and we will take a look

On 17 Jun., 09:00, Sgara  wrote:
> Thanks, but I won't publish this project on the web unfortunately, i'm
> developing on local.
> Do you konw if anyone has ever solved this or if is there any
> workaround?
>
> On 16 Giu, 21:41, "geocode...@gmail.com"  wrote:
>
>
>
>
>
>
>
> > On Jun 16, 10:04 am, Sgara  wrote:
>
> > > Hi, i am managing several hundreds of markers with marker manager,
> > > there is a set of markers which appears between the zoom level of 11
> > > and 18, another set appears from 1 to 10.
> > > I would like to manage that second set of markers with the marker
> > > clusterer, but if i load those markers in the markerclusterer they
> > > don't obey to the max zoom anymore, so i see the first set of markers
> > > together with the second in the zoom levels from 11 to 18.
>
> > > How can I cluster those markers?
>
> > Can you provide a link to your map so we can see what you are doing?
> > If you add markers to both the marker manager and the markercluster,
> > you will get the behavior you describe.  Sounds like you need to merge
> > the two libraries to get the functionality you want.
>
> >   -- 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: Should be simple... markers not appearing.

2011-06-16 Thread en4ce
the location is set, but you need a array to store the marker

try something like this:
var markers = [];
bn.Curiosity.initialize = function () {
   [code]
google.maps.event.addListener(map, 'click', function (event) {

var marker = new google.maps.Marker({
position: event.latlng,
map: map,
visible: true,
clickable: false,
title: 'hello world'
});
markers.push(marker);
map.setCenter(location);

});

this should do the trick

On 16 Jun., 20:52, Cornelius Parkin 
wrote:
> Hi
>
> The most obvious thing I can see is that "location" is not set. It should be
> a latlong object.
>
> Regards
> CAP
>
>
>
>
>
>
>
>
>
> On Thu, Jun 16, 2011 at 5:29 PM, Jo  wrote:
> > So I have a map that appears... And I'm trying to add an even listener that
> > will create a marker when the user clicks a spot on the map. here's my js
> > code for initializing my map and adding a marker...
> > I know that the code reaches the creation of the marker... just nothing
> > happens! Help please!
>
> > bn.Curiosity.initialize = function () {
> >     var myLatlng = new google.maps.LatLng(54.397, -106.644);
>
> >     var map = new google.maps.Map(document.getElementById("map_canvas"), {
> >         zoom: 4,
> >         center: myLatlng,
> >         mapTypeId: google.maps.MapTypeId.ROADMAP
> >     });
>
> >     google.maps.event.addListener(map, 'click', function (event) {
>
> >         var marker = new google.maps.Marker({
>
> >             position: event.latlng,
> >             map: map,
> >             visible: true,
> >             clickable: false,
> >             title: 'hello world'
> >         });
> >         map.setCenter(location);
>
> >     });
> > }
>
> > --
> > 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/-/Zzg-wnlgU-cJ.
> > 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.
>
> --
> Warm Regards
>
> C.A.Parkin
>
> *~"When you innovate, you've got to be prepared for everyone telling you
> you're nuts" - Larry Ellison~*

-- 
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: Autocomplete and styling of the controls

2011-06-15 Thread en4ce
bug report anyone ?

On 15 Jun., 15:36, Clem  wrote:
> Same issues !
>
> Sincerely,
> Clement.
>
> On 6 juin, 21:02, Miles  wrote:
>
>
>
>
>
>
>
> > I completely agree that the user of the API should be able to supply
> > the default text for the input box. Specifying it via the options
> > parameter would be great. Or perhaps the google API could respect what
> > I've set for the value attribute on my input element?
>
> > Another point of quirkiness I've noticed:
>
> > In my webapp, if the user clicks outside of the autocomplete text box
> > before selecting a location from the drop down, I need the text box to
> > clear out instead of leaving the text as is. I've tried clearing the
> > textbox manually via onchange and onblur events, but the somehow the
> > autocomplete logic magically repopulates it right after it clears.
>
> > Regards,
>
> > Miles
>
> > On Jun 6, 7:26 am, Gabriel Petrovay  wrote:
>
> > > And a few more things on usability:
>
> > > - an Enter or Tab selection. I know that both are already used in form
> > > submission and navigation respectively. But it would be nice to let the 
> > > user
> > > choose what key he wants in the constructor.
> > > - once the user chooses something, this should be considered "chosen" and
> > > the proposal div should not be displayed again if the user navigates back
> > > and forth the controls, unless he changes again the text in the 
> > > autocomplete
> > > field.
>
> > > And one more test and proposal for the focus thing:
> > > - try autocomplete on an input with the autofocus attribute. "Enter a
> > > location" should not be displayed. The options arguments in the 
> > > Autocomplete
> > > contructor should say something like:
> > > var options = {
> > >   emtyText: "Enter a location";}
>
> > > This for at least two reasons:
> > > 1. internationalization (correct me if I-'m wrong and this is handled by 
> > > an
> > > option in the maps API URL already, but not sure if that fits all needs)
> > > 2. letting users write their own text, and possibly empty if someone 
> > > writes
> > > the text outside the field
>
> > > Regards,
> > > Gabriel

-- 
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: Rookie Migrating to V3

2011-06-14 Thread en4ce
this is still V2 code, this group is for V3! read the posting
guidelines and no offence, if your map is ONLY working in IE you
clearly did something wrong, take a look at the error console in fire
fox or chrome and fix the errors

On 14 Jun., 13:46, Barry Hunter  wrote:
> see part 2 
> here:http://groups.google.com/group/google-maps-js-api-v3/browse_thread/th...
>
>
>
>
>
>
>
> On Tue, Jun 14, 2011 at 8:39 AM, Paulie  wrote:
> > Fair point Larry.
> > Here's a copy of my code, which works in IE, but not firefox, chrome,
> > safari etc.

-- 
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: Zoom control and infowindows broken

2011-06-14 Thread en4ce
did you try to use the 3.4 version and checked if it works there ?
your code seems quite ok

On 14 Jun., 13:46, Tony  wrote:
> hello,
> i have a map working, for the most part, but the zoom control shows up as a
> tiny image of what looks like a part of the slider (in the red circle on the
> left in the attached image), and infowindows don't open or display content
> correctly (the larger red circle). the page i'm working on is located 
> athttp://bbbnyaccreditedbusinessguide.org/2011/locate. the site is under
> construction, so the page doesn't really do anything, but i really just need
> these ui elements to load correctly and i can't tell why they're not just
> working. thanks in advance for any help!
>
> tony
>
>  gmapserror.jpg
> 119KAnzeigenHerunterladen

-- 
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: Google Map API

2011-06-14 Thread en4ce
watch this: http://www.youtube.com/watch?v=Rcvx5QHTJ5U

On 14 Jun., 17:17, kypriakos  wrote:
> Hi Larry,
>
> thanks for the response and apologies for the spam if this is the
> wrong
> list. I was not actually sure about the keys here so thanks for
> clarifying that.
> Map v2 is a different API than JS v3 as you pointed out. In fact the
> client
> code that we use is written in JS and we would like to keep it that
> way so
> I guess this may be indeed the right place. If keys are not used here
> then
> that would make life easier but I am not certain as to what that
> entails -
> does that mean that access to map data is unrestricted? I will go back
> and
> go over the page on both APIs but if you do have any more info to help
> guide
> me to the right information I will appreciate it.
>
> Many regards
>
> On Jun 14, 12:53 am, "geocode...@gmail.com" 
> wrote:
>
>
>
>
>
>
>
> > On Jun 13, 9:00 pm, kypriakos  wrote:
>
> > > Hi all,
>
> > > I understand how the Google Map key works (terms-wise) but since  in
> > > my work
> > > i need to combine and deliver google maps to mobile p2p devices I am
> > > not sure how
> > > I can apply for a key without an exposed (public) web site for it. How
> > > does
> > > this works? I compose services across mobile devices and the google
> > > map API
> > > in other words.
>
> > > If anyone has any hints on this I will appreciate the feedback.
>
> > > Thanks
>
> > The Google Maps JavaScript API v3 (the topic of this group) does not
> > use keys.
>
> > Read the posting guidelines for an indication of how to tell what
> > version you are using and where to find the v2 group if you need it.
>
> >   -- 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: problem with http://maps.gstatic.com/intl/...main.js

2011-06-13 Thread en4ce
well, i work as webdev (not as a good one, but anyway) for now quite
some years and i hate the IE, but one thing i would like to say, if
you can count the line numbers the error description is mostly right
so i would not blame it on ie, at least not if the maps api v3 is
involved ;) such errors happen if you coded something wrong... in
99.9% its this way

here a tip: run your script in the closure compiler, it will tell you
if there are errors (specially about the ie errors)

--ric

On 13 Jun., 19:14, Pil  wrote:
> On Jun 13, 6:03 pm, Barry Hunter  wrote:
>
> > 'ca' was used in a object context, but is not a object.
>
> Your reading seems extremly euphemistic to me.
>
> I've seen this error message in many different sorts of errors, i.e.
> missing bracket, missing and redundant comma, undefined variable etc.
>
> > ... doesnt seem particully cryptic. Of course its referring to a
> > location in a obfuscated javascript source so is harder to track down
> > the origin of the errors.
>
> I would not give a penny that the reported line is right - not even if
> the code was clearly formatted line by line.
>
> These are just a few results of my IE experiences.

-- 
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: "Google is not defined" Error is driving me crazy

2011-06-13 Thread en4ce
did you include this line: 
like this ?

if so change it to: 

just a guess

On 13 Jun., 09:30, THE_AI  wrote:
> It seems that you've provided a wrong link to your example.
>
> On Jun 12, 7:17 pm, Cesar David Romero Sandoval
>
>
>
>
>
>
>
>  wrote:
> > Hello guys,
>
> > I really didnt want to post, because I already found several post
> > related to this error, but actually I didnt find any reply that worked
> > for me. I guess it's either a missmatched parameter or some browser
> > trouble.
>
> > Im executing the most simple code, in the API v3 is called "The Hello
> > World for API v3", It's located at
>
> >http://code.google.com/intl/es-ES/apis/maps/documentation/javascript/...
>
> > If you wanna take a look of my web page where my server is:
>
> >www.safeinyourway.net
>
> > In "Quienes Somos" link, there you can see the source code and compare
> > with the example code, it's axactly the same.
>
> > I hope you can help me out.
>
> > Best regards,
>
> > César

-- 
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: Filtering markers

2011-06-12 Thread en4ce
read the posting guidelines, if you dont have webspace, use
dropbox

On 12 Jun., 10:50, dabernathy89  wrote:
> It looks a lot nicer in my editor. Obviously the only stuff you can't see
> from the page source is the PHP.

-- 
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: Message: Invalid argument. Line: 27 Char: 56 URI: http://maps.gstatic.com/intl/nl_nl/mapfiles/api-3/5/6a/main.js

2011-06-11 Thread en4ce
i did watch your code but 99% chance you call a function or method in
maps v3 and pass something invalid, Andrew point ya in the right
direction.

On 11 Jun., 15:14, Bas Debie  wrote:
> Thanks, but that doesn't seem the problem..
> The original script does exactly that without causing errors.
> I removed the adsense code from the page and now the error is gone.
> Seemed that the adsense code caused the problem strange enough..
> Thanks anyways!
> Bas
>
> On 10 jun, 23:27, Andrew Leach  wrote:
>
>
>
>
>
>
>
> > On 10 June 2011 21:51, Bas Debie  wrote:
>
> > > Sometimes it returns error: Message: Invalid argument.
> > > Sometimes instead: Message: Unspecified error.
>
> > I found this:
> >   position: new google.maps.LatLng(v.lat,v.lng),
> > where v.lat and v.lng are Strings, not Numbers. That can cause problems.
>
> > IE is notoriously difficult to debug, but passing strings to LatLng()
> > is not a good idea.

-- 
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: Store locator

2011-06-11 Thread en4ce
there is something but it is not released, talk to brody maybe

heres the url: http://code.google.com/p/storelocator/


On 11 Jun., 05:12, kypriakos  wrote:
> For the prototype I am only after a simple scenario where I can query
> a number of
> cell phones, get their locations, look up for each location where the
> closest
> grocery store is and then let them know about it. I know each of them
> can do this
> search but for now I want a single point of management for the phones.
> So like
> you said, google can help me on this. Down the road I will nee to
> build my own
> datasource for it. Thanks again Rossko
>
> On Jun 10, 11:00 am, Rossko  wrote:
>
>
>
>
>
>
>
> > > You think only if I keep my
> > > own db it would possible?
>
> > It depends what you want in your results and where you are operating ;
> > if you are trying to show stores that stock your product for example,
> > you'll need your own datasource.
> > If you want to know the half-dozen nearest coffee shops, that is
> > obtainable from Google in most (not all) parts of the world.

-- 
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: with alert estimates elevations, without it dont, why?

2011-06-10 Thread en4ce
the first thing i thought when i read the topic name i thought its a
timing problem, try it with settimeout or maybe a try catch with a
self called function

On 10 Jun., 19:09, mariovi  wrote:
> Antoher possible explanation Larry, could it be that I am requesting
> elevations so fast that google server cannot respond?
> Every call to calculateVolumenx requests 256 points, and this request
> is repeated several times but very quickly.
> Is there a way to know how fast can I request elevations???
> thanks
> mariobi40

-- 
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: Absolute javascript noob trying to use markerClusterer

2011-06-10 Thread en4ce
seriously, read the Posting Guidelines  ... man every day the same
shit, i want a function that denies to post stuff when you have not
read it -.-"

On 10 Jun., 05:14, snails07  wrote:
> I'm not sure that it is using anything. It appears to load every
> marker on the map which is very slow and actually crashes the iphone
> when trying to view on that.
> Ideally I would like markerclusterer to be working on the site.
> Any ideas on what I need to do to get it to work. I've tried a number
> of times to get it working but my very limited knowledge of javascript
> and google maps is making it pretty difficult for me.

-- 
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: Reverse geocoding - getting street, city, country and zip code

2011-06-08 Thread en4ce
"I want to identify the street, city, zip and country from the
geocoder
result and store them in my DB of course :) " i am not so sure but i
think thats against the tos anyway ;) you have to geocode it in real
time on the fly

On 8 Jun., 22:22, THE_AI  wrote:
> Hey Rossko,
> thank you for the reply.
> Maybe I'm just confused...
>
> On Jun 8, 8:46 pm, Rossko  wrote:
>
> > > Now when I go over London, England I get really confusing results.
> > > Instead of the city being London, the geocoder tells me that it is
> > > either great london, lambeth or another boroughs of london.
>
> > > There is one area of 1-2 square km that is mapped to London,
> > > everything else is not london for the geocoder.
>
> > That's postal addresses for you.  The City of London is famously one
> > square mile, right next door to the City of Westmisnster.  All are
> > within Greater London which has many other boroughs etc. etc.
>
> I'm reading the api docs and it says:
> locality indicates an incorporated city or town political entity.
>
> So I moved my marker to Islington and the response from google
> geocoder contains Islington as the locality. Greater London is set as
> the administrative_area_level_2.
>
> Shouldn't the locality be London instead of Islington?
> Islington is borough of London and not the city itself(locality)...
>
> I went to a city in Germany that I know very well and started to move
> the marker around. When I was moving the marker to suburbs of the city
> the locality returned from the google geocoder was still the name of
> the city.
>
> > > So my question here is - am I supposed to look for the city/zip/street/
> > > country the way I do it or is there another way that will give me the
> > > results I want?
>
> > Don't know what you want ; it isn't the postal address I guess ?
>
> I want to identify the street, city, zip and country from the geocoder
> result and store them in my DB of course :)
>
> I don't understand this paragraph from the API doc:
> "Generally, the more exact address is the most prominent result, as it
> is in this case. Note that we return different types of addresses,
> from the most specific street address to less specific political
> entities such as neighborhoods, cities, counties, states, etc. If you
> wish to match a more general address, you may wish to inspect the
> results[].types field."
>
> Does this mean that I should get all results and browse trough them
> and look if there is a result containing just a postal code, street,
> locality and country? Or is it ok to just go with the first returned
> result as it is the one that is most accurate???

-- 
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: Getting nearby places

2011-06-08 Thread en4ce
i just thought that this are maybe the places / names you are looking
for, no biggy

On 8 Jun., 23:09, "sandeepj...@zeetozed.com"
 wrote:
> Chris - The issue is that the building names I want appear on the map
> (embedded in the image). But, I can't find an API to access them.
>
> On Jun 8, 2:06 pm, "sandeepj...@zeetozed.com"
>
>
>
>
>
>
>
>  wrote:
> > Thanks for responding.
>
> > Indeed.  Tried radius=5 and10, and still got only 1 result.
>
> > Sandeep
>
> > On Jun 8, 9:32 am, Chris Broadfoot  wrote:
>
> > > On Wed, Jun 8, 2011 at 12:18 PM, sandeepj...@zeetozed.com <
>
> > > sandeepj...@zeetozed.com> wrote:
>
> > > >https://maps.googleapis.com/maps/api/place/search/json?location=37.42...
> > > > <...enter
>
> > > Did you try it with a radius larger than 1?
>
> > > --http://twitter.com/broady

-- 
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: Unable to load map

2011-06-08 Thread en4ce
na, there is no map, no error either... at least on my chrome

but i had this one ;) --> "The requested URL /404.php was not found on
this server." after i typed in a state like "new york" in the search
field... seems you have a lot of things to do :-P

On 8 Jun., 23:35, Travis Risner  wrote:
> There should be a map that loads when the page loads.  The main error I get
> in firebug over and over is:
>
> Invalid value for property : 7

-- 
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: Elevation plot for directions

2011-06-08 Thread en4ce
yeah, you took a really interesting approche there, most likely ill
port that over but this will need some time ... theres always to much
things to do :S


On 8 Jun., 18:03, Chris Broadfoot  wrote:
> Thanks! I hope you find it useful, either for your elevation plotting needs
> or as a code sample :)
>
> On Wed, Jun 8, 2011 at 8:09 PM, en4ce  wrote:
> > i mean why is that in there ?
>
> I think I put that in there because I was using
> directionsRenderer.getRouteIndex() which seemed to be set *after* the
> directions_changed event.
>
> I just changed it to always use the first directions (I must have had some
> way of changing the route index at one point).
>
> https://github.com/broady/maps-examples/commit/2e1b
>
> --http://twitter.com/broady

-- 
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: Multiple Geocoding - Places and Markers

2011-06-08 Thread en4ce
that happens here and there (my self just saw that on
formatted_phone_number), just do a check like

if (place.formatted_address==undefined){do what you want}

On 8 Jun., 15:39, Alex  wrote:
> Ultimate last question.
> I want to display the full adress of each place in the infowindow.
> I tried to use place.formatted_address object, but this one appear
> undefined.
>
> An idea to display it ?
>
> google.maps.event.addListener(marker, 'click', function() {
>           infowindow.setContent(place.name+" "+place.formatted_address);
>           infowindow.open(map, this);
>
> On Jun 8, 11:58 am, Alex  wrote:
>
>
>
>
>
>
>
> > Yes, the problem came from the string.
> > Using the results[0].geometry.location object, it's working well
> > now :)
>
> > Thanks a lot for your help !!
>
> > Additionnal last question : do you know if there's any radius limit on
> > the place search ?
>
> > On Jun 7, 11:49 pm, Rossko  wrote:
>
> > > > I updated the code with changes you requested. Now all the script
> > > > looks running well, but still no marker on the map.
>
> > > In your new callback -
> > >    var locationArea = results[0].geometry.location.lat()+", "+results
> > > you make a string, then
> > >     var storeArea = new google.maps.LatLng(locationArea);
> > > LatLng expects to be given two numbers, not one string.
>
> > > Have you considered using results[0].geometry.location directly as
> > > this is already a LatLng 
> > > ?http://code.google.com/apis/maps/documentation/javascript/services.ht...
>
> > > The next problem might be with trying to reference a function before
> > > you have declared it (depending on your browser)
> > >     service.search(request, callback);
> > >     function callback(results, status) {

-- 
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: Elevation plot for directions

2011-06-08 Thread en4ce
thats the best thing i saw in a while, very impressive! not only that
the rout is calculated when dragged, even the custom chart... mad
probs

what does :

 /* hack */ setTimeout(function() {
 //code//
  }, 0);

?
i mean why is that in there ?


On 8 Jun., 07:54, Chris Broadfoot  wrote:
> Also check out one of my demos:
>
> http://broady.github.com/maps-examples/draggable-elevation/
>
> On Wed, Jun 8, 2011 at 4:36 AM, geocode...@gmail.com
> wrote:
>
>
>
>
>
>
>
>
>
> > On Jun 7, 6:26 am, Hallvard76  wrote:
> > > Hi,
>
> > > I want to do the following:
>
> > > I want to use the direction object to calculate a route between two
> > > points. In addition to draw the route, I want an elevation graph for
> > > this route. That is, I want to combine this:
>
> > >http://code.google.com/intl/no-NO/apis/maps/documentation/javascript/...
>
> > > with this:
>
> > >http://code.google.com/intl/no-NO/apis/maps/documentation/javascript/...
>
> > > Can anybody help me with this task?
>
> > You mean like this:
> >http://www.geocodezip.com/v3_elevation-profile_distance.html
> > (I think this came from a google example)
>
> >  -- Larry
>
> > > Best regards
>
> > > Hallvard
>
> > --
> > 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.
>
> --http://twitter.com/broady

-- 
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.



  1   2   3   >