Grundsätzlich habe ich eine HTML-Seite mit einer Karte, wo ich die Breite und die Länge, die ich will, und ich muss diese Koordinaten zu einem JSP-Seite senden, aber wenn ich auf Send drücken, bekomme ich den Fehler java.lang.NullPointerException at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1017) at java.lang.Double.parseDouble(Double.java:540)
. Also:Retrieve Lat und lange Javascript
-in html Ich habe
...<form action="GET.jsp" method="post" id="form" name="formMaps">
<div id="map" style="float:left; width:100%; height:350px; margin-bottom:30px;"></div>
Latitude <input type="String" name="lat" value="44.689205" id="coord_lat">
<span style="margin-left:10px;">Longitude <input type="String" name="lon" value="10.663778" id="coord_lng"></span>
<div align="center"> <input name="submit" type="submit" id="submit" value="SEND" /> </div></form>...
- in GET.JSP Ich habe
...<% Double lati = Double.parseDouble(request.getParameter("lat")); Double longi = Double.parseDouble(request.getParameter("lon")); %>...
Mögliche Duplikat http://stackoverflow.com/questions/15417130/how-to-get-latitude-and-longitude-from-google-maps-v3 -api –