コーディングが新しく、次のコードを実装しようとしています:https://bl.ocks.org/mbostock/899711。ローカルの.jsonファイルの代わりに、私はURLからjsonを読んでいます。残念ながら、LATとLONGは文字列なので、data.forEach()を使用して解析しますが、解析されたd.LATとd.LONGをデータ外に呼び出すと、 forEach()では、d.LATとd.LONGが読み取られていますが、未定義として返されます。d3.json()undefined googleoverlay
var map = new google.maps.Map(d3.select(".box-panel-map").node(), {
zoom: 15,
draggableCursor: 'crosshair',
center: new google.maps.LatLng(54.52936037,-117.46484254),
mapTypeId: google.maps.MapTypeId.TERRAIN,
backgroundColor: "white",
mapMaker: 'True',
styles: [
{
featureType: "all",
elementType: "labels",
stylers: [{ visibility: "off" }]
}
]
});
var url ="";
d3.json(url, function(data) {
data.forEach(function(d) {
d.LAT = +d.LAT___DEG;
d.LONG = +d.LONG___DEG;
});
var overlay = new google.maps.OverlayView();
// Add the container when the overlay is added to the map.
overlay.onAdd = function() {
var layer = d3.select(this.getPanes().overlayMouseTarget).append("div")
.attr("class", "pipemap");
// Draw each marker as a separate SVG element.
overlay.draw = function() {
var projection = this.getProjection(),
padding = 10;
function transform (d) {
console.log(d.LAT); //THIS IS RETURNING AS UNDEFINED
var googleCoordinates = new google.maps.LatLng(d.LAT, d.LONG);
var pos = projection.fromLatLngToDivPixel(googleCoordinates);
return d3.select(this)
.style("left", (pos.x - padding) + "px")
.style("top", (pos.y - padding) + "px");
//.attr('fill', color(d.value[2]))
}
/*var color = d3.scale.linear()
.domain([0, 1])
.range(["blue", "red"]); */
var cValue = function(d) { return d.GFLAG;},
color = d3.scale.linear()
.domain([0, 1])
.range(["blue", "red"]);
var tooltip = d3.select("body")
.append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var marker = layer.selectAll("svg")
.data(d3.entries(data))
.each(transform) // update existing markers
.enter().append("svg:svg")
.each(transform)
.attr("class", "marker");
// Add a circle.
marker.append("circle")
.attr("r", 2.5)
.attr("cx", padding)
.attr("cy", padding)
.style("fill", function(d) { return color(cValue(d));})
.on("mouseover", function(d) {
tooltip.transition()
.duration(200)
.style("opacity", .9);
// tooltip.html('Population: '+d.key+'<br>'+'Allele Frequencey: '+d.value[2].toPrecision(3))
tooltip.html('Feature-Type: '+d.key+'')
.style("left", (d3.event.pageX + 5) + "px")
.style("top", (d3.event.pageY - 28) + "px");
})
.on("mouseout", function(d) {
tooltip.transition()
.duration(200)
.style("opacity", 0);
});
};
};
overlay.setMap(map);
});
URL内の
JSONオブジェクトの例私が読んでいる:
[{"FEATURE_NUMBER":"ABC-1115",
"LAT___DEG":"54.412530",
"LONG___DEG":"-117.447681",
"FLAG":0,"COMMENTS":null}]