I am using Jsoup to scrap some data. In my document, I have something like:
<script type="text/javascript">
ta.store('mapsv2.geoName', 'Marseille');
ta.store('mapsv2.map_addressnotfound', 'Address not found'); ta.store('mapsv2.map_addressnotfound3', 'We couldn\'t find that location near {0}. Please try another search.'); </script>
<script type="text/javascript">
window.mapDivId = 'map0Div';
window.map0Div = {
lat: 43.295246,
lng: 5.364188,
zoom: null,
locId: 5039388,
geoId: 187253,
My code:
Document attractionDoc = Jsoup.connect(url).timeout(100000).get();
System.out.println("attractionDoc "+attractionDoc.toString());
But I don't know how to catch the number after lat: and lng:
Thanks for your help!