Closed GoogleCodeExporter closed 9 years ago
Can't reproduce the problem with the information given. Could you provide a
link to a map that exhibits the problem?
Original comment by geocodezip
on 4 Aug 2011 at 12:28
I am runnin it local at this stage. attached my full code.
Original comment by TheMax...@gmail.com
on 5 Aug 2011 at 6:19
Attachments:
Can't reproduce it without a link on a public site to a map that exhibits the
problem.
Original comment by geocodezip
on 7 Aug 2011 at 4:25
I got it on a site now. http://www.mediamap.co.za/default.aspx
The another question:
see http://www.dyasdesigns.com/geoxml/gmlusa.htm
there is a second div called messagearea, and i am trying to simulate it using
geoxml3 on the mouserover, but i can not get the actual dscription from the
info window if you should click it (loaded from the KML) from the ploy object I
can gt the title, but not the Description?
Original comment by TheMax...@gmail.com
on 18 Aug 2011 at 6:01
I see the problem on that page, however, what makes you think it is a problem
with geoxml3 and not your software?
Can you provide a simplified page that shows the issue with geoxml3? (no .net
stuff, no jquery, just html, kml and javascript)?
Or alternatively can you make the following page exhibit the problem:
http://www.geocodezip.com/geoxml3_test/www_mediamap_co_za_testA.html
(documents 0 and 1 seem to be the same)
> The another question:
> see http://www.dyasdesigns.com/geoxml/gmlusa.htm
>
> there is a second div called messagearea, and i am trying to simulate it
using
> geoxml3 on the mouserover, but i can not get the actual dscription from the
info
> window if you should click it (loaded from the KML) from the ploy object I
can gt
> the title, but not the Description?
The issues list is not for support. If you need support, please post your
question to the Google Maps JavaScript API v3 group.
Original comment by geocodezip
on 21 Aug 2011 at 4:12
Thanx
Through viewing your page etc, i have sorted out 90% of the issues.
Right now, I have only one linked issue remaining to this query, and i think it
is in the different approaches.
You Parse all the documents imidiately, so you have them all already loaded,
before any clicking or anything happens.
I am trying to 'load' 'add' kml files on a click event, so here is my question.
If the parse is not yet instantiated, I call:
geoXml = new geoXML3.parser({ map: map,
infoWindow: infowindow,
singleInfoWindow: false,
zoom: false,
processStyles: true,
afterParse: useTheData
});
geoXml.parse(filename);
Now if the parser does already exist, I simply call:
geoXml.parse(filename);
geoXml.showDocument();
Does this then overwrite the existing files, ie, if it exist should i rather
call
geoXML.parse(existingfilename,newfilename) ?
Thanx
Original comment by TheMax...@gmail.com
on 9 Sep 2011 at 1:54
I looked at the examples, and decided to put it into an array, and load all
However, as I do not now the filenames etc beforehand, as it is generated from
a database, I put the files into a array, but although it seems that geoxml
supports and array, it does not support an actual array, or am i missing
something ?
var tmpfilenames = new Array();
for (tf = 0; tf < filesplit.length; tf++) {
tmpfilenames[tf] = filesplit[tf];
}
geoXml.parse([tmpfilenames]); --FAILS!
geoXml.parse(tmpfilenames); --FAILS!
geoXml.parse([tmpfilenames.toString()]); -- FAILS!
geoXml.parse(tmpfilenames.toString()); -- FAILS!
This seems to be my final issue, as i have workedout all the other kinks i had,
mainly thanks to the assistance here, this is my final hurdle.
Original comment by TheMax...@gmail.com
on 14 Sep 2011 at 6:33
geoXml.parse(tmpfilenames); --FAILS! ---should work if tmpfilenames is an array
of URLs
I don't see a problem using the correct syntax:
http://www.geocodezip.com/geoxml3_test/v3_geoxml3_array_linkto.html
Please provide a link to your map that exhibits this problem.
Original comment by geocodezip
on 15 Sep 2011 at 2:26
Original comment by geocodezip
on 23 Nov 2011 at 3:56
Original issue reported on code.google.com by
TheMax...@gmail.com
on 4 Aug 2011 at 6:56