Select to view content in your preferred language

KML loads very slowly in ArcGIS online

1144
4
06-21-2012 01:45 PM
BenjaminHarper
New Contributor III
I have a kml feed going into an ArcGIS online map that takes nearly 8 seconds to load. Any suggestions to optimize for speed? Ultimately, the map is being consumed/viewed in a gallery, but is slow on arcgis.com as well. See http://www3.multco.us/maps/district2gallery  ...the "Out and About" map is the culprit.

Thanks much for any assistance!

Ben
Tags (2)
0 Kudos
4 Replies
BenjaminHarper
New Contributor III
Does anyone at ESRI have a reponse? Other folks with the same issue?

Thanks much,
Ben
0 Kudos
MikeMinami
Esri Notable Contributor
It does seem a little slow. We'll have to investigate and see if we find anything.

Thanks,

Mike
0 Kudos
BenjaminHarper
New Contributor III
Thank you Mike. I appreciate any help!

-Ben
0 Kudos
MikeMinami
Esri Notable Contributor
This KML file defines two identical styles, which is causing the slowness. We've made some optimizations that will (probably) go out when we next update the website. If you can adjust your KML, that may help in the meantime.


<Style id="style1">
    <IconStyle>
      <Icon>
        <href> http://icons.iconarchive.com/icons/icon.png</href>
      </Icon>
    </IconStyle>
  </Style>

  <Style id="style2">
    <IconStyle>
      <Icon>
        <href> http://icons.iconarchive.com/icons/icon.png</href>
      </Icon>
    </IconStyle>
  </Style>
0 Kudos