hodgesse1 / kml-samples

Automatically exported from code.google.com/p/kml-samples
0 stars 0 forks source link

Duplicating placemarks is ONLY good for backup, problematic for anything else #377

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Which products are affected?

Google Earth, Google Earth Pro, Google Earth Plug-in, Google maps

What steps will reproduce the problem?

1. Duplicate any placemark, not for backup, but for use in similar placemark 
formatting, etc. 
2. Rename duplicate, add new description and html, POV, etc.
3. Duplicate still mirrors original, sometimes in description, but mostly in 
KML file code, where one sees the original placemark ID still intact

What is the expected output or behavior? What do you see instead?

One would hope you could use the duplicate as a template, to create similarly 
formatted placemarks. Instead it carries the code ID of the original, causing 
all kinds of problems. You should let people know that duplication is not 
recommended, except for backup purposes ONLY.

What application versions (if any) are you using?

Mac OS 10.6.6; Google Earth Pro 6.0.1.2032 (beta) 

Which operating systems (and/or relevant web browsers) are affected?

I am on Mac OS 10.6.6, but I think all would be affected.

Please provide any additional information (code snippets/links) below.

    <Folder>
        <name>Duplicate-TEST</name>
        <open>1</open>
        <Placemark id="Pictographs">
            <name>Pictographs</name>
            <Snippet maxLines="0"></Snippet>
            <description><![CDATA[<img src="http://www.grandcanyonvirtualtour.com/_images/grand_canyon-logo-400.jpg" width="250px"><br><IMG SRC="http://www.grandcanyonvirtualtour.com/_images/ba-pictographs.jpg" width="250px"><br>]]></description>
            <LookAt>
                <longitude>-112.1419298938958</longitude>
                <latitude>36.06175157370283</latitude>
                <altitude>0</altitude>
                <heading>-78.08332844015318</heading>
                <tilt>0</tilt>
                <range>346.0541521201831</range>
                <altitudeMode>relativeToGround</altitudeMode>
                <gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
            </LookAt>
            <styleUrl>#msn_camera74</styleUrl>
            <Point>
                <coordinates>-112.14262138299,36.06124539920157,910.2000000000002</coordinates>
            </Point>
        </Placemark>
        <Placemark id="Pictographs">
            <name>Renamed DUP of Pictographs</name>
            <Snippet maxLines="0"></Snippet>
            <description><![CDATA[<img src="http://www.grandcanyonvirtualtour.com/_images/grand_canyon-logo-400.jpg" width="400px"><br><IMG SRC="http://www.grandcanyonvirtualtour.com/_images/ba-near-indiangarden.jpg" width="400px"><br>]]></description>
            <LookAt>
                <longitude>-112.1388338087714</longitude>
                <latitude>36.06278879028986</latitude>
                <altitude>0</altitude>
                <heading>56.41009941268197</heading>
                <tilt>42.22897660797548</tilt>
                <range>1328.550885898281</range>
                <altitudeMode>relativeToGround</altitudeMode>
                <gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
            </LookAt>
            <styleUrl>#msn_camera</styleUrl>
            <Point>
                <coordinates>-112.1429867809499,36.06597216328766,910.2000000000002</coordinates>
            </Point>
        </Placemark>
    </Folder>

Original issue reported on code.google.com by swood...@gmail.com on 16 Mar 2011 at 3:04