ฉันพยายามแสดงเครื่องหมายบนแผนที่เมื่อฉันคลิกที่ปุ่มของแอปพลิเคชัน JavaFX ของฉัน ดังนั้นสิ่งที่เกิดขึ้นคือเมื่อฉันคลิกที่ปุ่มนั้นฉันเขียนตำแหน่งในไฟล์ JSON ไฟล์นี้จะถูกโหลดในไฟล์ html ที่มีแผนที่ ปัญหาคือมันทำงานได้อย่างสมบูรณ์เมื่อฉันเปิดหน้า html ในเบราว์เซอร์ แต่ไม่มีอะไรเกิดขึ้นในมุมมองเว็บของ JavaFX และฉันไม่รู้ว่าทำไม!
นี่คือไฟล์ html:
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
/*#map {
height: 100%;
}*/
#map{width:100%;height:100%;margin:auto;}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map;
var marker;
// Multiple Markers
var markers = [];
var pos = {lat: 46.662388, lng: 0.3599617};
var itinerary_markers = [];
function initMap() {
var currentLat, currentLng;//Latitude et longtitude courante
$.ajax({
url: 'https://maps.googleapis.com/maps/api/geocode/json?address=My+ADDRESS&key=MY_KEY',
async: false,
dataType: 'json',
success: function (data) {
currentLat = data.results[0].geometry.location.lat;
currentLng = data.results[0].geometry.location.lng;
}
});
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: currentLat, lng: currentLng},
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
/*MARQUEUR*/
$.ajax({
async: false,
url: 'test.json',
data: "",
accepts:'application/json',
dataType: 'json',
success: function (data) {
for (var i = 0; i < data.hydrants.length; i++) {
markers.push( data.hydrants[i]);
}
}
});
var posi = new google.maps.LatLng(markers[0].Lat, markers[0].Lng);
marker = new google.maps.Marker({
position: posi,
map: map,
//title: markers[i][0]
title: markers[0].Name
});
}
</script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=MY_KEY&callback=initMap&language=fr"
async defer></script>
</body>
</html>
เมื่อฉันคลิกปุ่มฉันเติมไฟล์ JSON (ซึ่งทำงานได้อย่างสมบูรณ์แบบ) จากนั้นฉันดำเนินการสิ่งนี้เพื่อรีเฟรชมุมมองเว็บ:
this.webView.getEngine().load(getClass().getResource("/data/index.html").toString());
อย่างที่ฉันพูดไปก่อนหน้านี้เมื่อฉันเปิดไฟล์บนเบราว์เซอร์ฉันเห็นผลลัพธ์ที่คาดหวัง แต่ฉันไม่รู้ว่า JavaFX มีปัญหาอะไร หากมีวิธีที่ดีกว่านี้โปรดบอกฉัน
แก้ไข:
ฉันพบวิธีแก้ไขปัญหาโดยส่งข้อมูลโดยตรง (พิกัด GPS) จาก JavaFX ไปยัง Javascript โดยใช้วิธี executeScript () ดังนั้นฉันไม่ต้องการไฟล์ json เป็นสะพานเชื่อมระหว่างสองแพลตฟอร์ม ดังนั้นนี่คือตัวอย่างลักษณะของรหัส:
eng.executeScript("updateMarker(" + lat + ", " + lng + ")");//eng is a WebEngine instance
และนี่คือ Javascript:
/*The initial latitude and longtitude*/
var currentLat = the latitude;
var currentLng = the longtitude;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: currentLat, lng: currentLng},
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var posi = new google.maps.LatLng(currentLat, currentLng);
marker = new google.maps.Marker({
position: posi,
map: map,
visible: false
});
}
/*The method that is I call from JavaFX*/
function updateMarker(_lat, _lng){
marker.setPosition({lat: _lat, lng: _lng});
map.setCenter(new google.maps.LatLng(_lat, _lng));
marker.setVisible(true);
}
ขอบคุณสำหรับความคิดเห็นและคำตอบของคุณและการยิงพิเศษเพื่อ reddit
cache: false
ไปยังการโทร ajax ในกรณีที่แคชและตรวจสอบให้แน่ใจว่าคุณกำหนดเป้าหมายไฟล์ที่ถูกต้อง นอกจากนี้ยังมีบันทึกบางส่วนที่นี่และจะช่วยระบุปัญหา