<div dir="ltr"><div><div><div><div>Hi,<br><br></div>Do you serve your HTML via a local server?<br>If you just put files like that without a web server, you will hit the same origin policy issue to load KML because of an url call to kml file from an url like file://your/path/your_index.html<br><br></div>Try a server like <a href="https://github.com/NanoHttpd/nanohttpd">https://github.com/NanoHttpd/nanohttpd</a><br></div><div>Otherwise, try to use this recipe <a href="http://stackoverflow.com/questions/8648616/webview-javascript-cross-domain-from-a-local-html-file">http://stackoverflow.com/questions/8648616/webview-javascript-cross-domain-from-a-local-html-file</a> (never tested so no warranty) <br></div><br>Cheers<br><br></div>Thomas Gratier<br><div><div><div><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">2016-09-02 14:59 GMT+02:00 ScigallaP <span dir="ltr"><<a href="mailto:ScigallaP@ibb-bochum.de" target="_blank">ScigallaP@ibb-bochum.de</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I'm new in OL and have an first simple question here.<br>
<br>
My frist small project to show kml files with OL and OSM runs fine on my local PC and on a webserver too. The result is shown on desktop (chrome and firefox) and mobile browser (chrome and opera).<br>
<br>
But when I cpoy the complete code (and file structure including kml files) on my Android cellphone or tablet, only the OSM map is shown, but no kml. Not with chrome and not with opera.<br>
<br>
My devices are Galaxy Tab S2 and HTC ONE M8, both Android 6.<br>
<br>
I want use it locale on Android devices, to beware download large kml (>10 MB).<br>
<br>
Here my code:<br>
<br>
### BEGIN HTML code ###<br>
<html><br>
    <head><br>
        <title>Hallo OSM</title><br>
        <link rel="stylesheet" href="ol.css" type="text/css" /><br>
        <link rel="stylesheet" href="samples.css" type="text/css" /><br>
    </head><br>
    <body><br>
        <div id="map" class="map"></div><br>
        <script src="ol.js"></script><br>
        <script><br>
<br>
      var vector = new ol.layer.Vector({<br>
        source: new ol.source.Vector({<br>
          url: 'kml/hydranten6.kml',<br>
          format: new ol.format.KML({<br>
              extractStyles: true,<br>
              extractAttributes: false,<br>
              maxDepth: 30<br>
              })<br>
        })<br>
      });<br>
<br>
        var ltg = new ol.layer.Vector({<br>
        source: new ol.source.Vector({<br>
          url: 'kml/leitungen.kml',<br>
          format: new ol.format.KML({<br>
              extractStyles: true,<br>
              extractAttributes: false,<br>
              maxDepth: 30<br>
              })<br>
        })<br>
      });<br>
        var osmLayer = new ol.layer.Tile({<br>
            source: new ol.source.OSM()<br>
            });<br>
        var musterort = ol.proj.transform([13.94, 50.96], 'EPSG:4326', 'EPSG:3857');<br>
        var view = new ol.View({<br>
            center: musterort,<br>
            zoom: 18<br>
            });<br>
        var map = new ol.Map({<br>
            layers: [ltg, vector],<br>
            target: 'map'<br>
            });<br>
        map.setView(view);<br>
        </script><br>
    </body><br>
</html><br>
### END HTML code ###<br>
<br>
The HTML file, ol.css, samples.css, ol.js and both kml files are stored in the same structure on Android as on PC and webserver.<br>
<br>
Any help would be appreciated.<br>
<br>
Thanks in advance!<br>
______________________________<wbr>_________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.osgeo.org" target="_blank">Users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" rel="noreferrer" target="_blank">http://lists.osgeo.org/mailman<wbr>/listinfo/openlayers-users</a></blockquote></div><br></div>