第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何讓我的線條與地球一起旋轉(zhuǎn)?

如何讓我的線條與地球一起旋轉(zhuǎn)?

慕俠2389804 2023-07-20 17:28:36
以在繪制地球儀后動(dòng)態(tài)添加位置/點(diǎn)和紅線。(本質(zhì)上,我想動(dòng)態(tài)添加數(shù)據(jù),而不是像示例那樣從一組固定的點(diǎn)開始)。繪制紅色虛線,但隨著地球旋轉(zhuǎn),這些線保持在相同位置。如何讓我的線條像示例中那樣隨地球旋轉(zhuǎn)?我的小提琴: https:?//jsfiddle.net/6qhvt8aL/2/? var width = 960,? ? height = 500;? var proj = d3.geoOrthographic().scale(230).translate([width / 2, height / 2]).clipAngle(90);? var path = d3.geoPath().projection(proj).pointRadius(1.5);? var graticule = d3.geoGraticule();? var london = [-0.118667702475932, 51.5019405883275];? var time = Date.now();? var rotate = [39.666666666666664, -30];? var velocity = [.015, -0];? var lineToLondon = function(d) {? ? return path({? ? ? "type": "LineString",? ? ? "coordinates": [london, d.geometry.coordinates]? ? });? }? function stripWhitespace(str) {? ? if (!str) {? ? ? return "";? ? }? ? return str.replace(" ", "");? }? var svg = d3.select("body").append("svg").attr("width", width).attr("height", height)? svg.call(d3.drag().on("start", dragstarted).on("drag", dragged));? queue().defer(d3.json, "https://openlayers.org/en/latest/examples/data/topojson/world-110m.json").defer(d3.json, "/static/destinations.json").await(ready);? var places = {? ? "type": "FeatureCollection",? ? "features": [{? ? ? "type": "Feature",? ? ? "properties": {? ? ? ? "name": "San Francisco"? ? ? },? ? ? "geometry": {? ? ? ? "type": "Point",? ? ? ? "coordinates": [-122.417168773552248, 37.769195629687431]? ? ? }? ? }, {? ? ? "type": "Feature",? ? ? "properties": {? ? ? ? "name": "Chicago"? ? ? },? ? ? "geometry": {? ? ? ? "type": "Point",? ? ? ? "coordinates": [-87.752000832709314, 41.831936519278429]? ? ? }? ? }, {? ? ? "type": "Feature",? ? ? "properties": {? ? ? ? "name": "Los Angeles"? ? ? },? ? ? "geometry": {? ? ? ? "type": "Point",? ? ? ? "coordinates": [-118.243683, 34.052235]? ? ? }? ? }
查看完整描述

1 回答

?
臨摹微笑

TA貢獻(xiàn)1982條經(jīng)驗(yàn) 獲得超2個(gè)贊

您可以在刷新功能中更新除行之外的所有內(nèi)容,您只需要更新它們即可。


您不能使用,svg.selectAll(".lines").attr("d", lineToLondon)因?yàn)槟幸粋€(gè)包含該類的所有路徑的g類。lines相反,您可以使用:


 svg.selectAll("path.lines").attr("d", lineToLondon);

需要注意的一件事是,您的代碼中不需要這些行:


svg.selectAll(".lines").attr("d", (d) => {

  if (d) {

    return lineToLondon(d);

  }

});

這是這些更改的更新小提琴。


查看完整回答
反對(duì) 回復(fù) 2023-07-20
  • 1 回答
  • 0 關(guān)注
  • 169 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)