gpt4 book ai didi

java - panoramagl 热点移动到下一个全景图

转载 作者:行者123 更新时间:2023-11-29 04:54:36 30 4
gpt4 key购买 nike

这是 panoramagl 的代码,其中圆柱全景图与热点一起使用,但是如何通过单击它转到下一个全景图这是我的代码,其中热点是可点击的但不能移动到下一个全景图任何人都可以帮助我

PLManager plManager;
PLHotspot hotspot;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
plManager = new PLManager(this);
plManager.setContentView(R.layout.activity_main);
plManager.onCreate();

PLCylindricalPanorama panorama = new PLCylindricalPanorama();
panorama.getCamera().lookAt(0.0f, 200.0f);
panorama.getCamera().setPitchRange(-30.0f, 30.0f);
panorama.setImage(new PLImage(PLUtils.getBitmap(this, R.raw.z), false));
plManager.setPanorama(panorama);
panorama.addHotspot(new PLHotspot(1, new PLImage(PLUtils.getBitmap(this, R.raw.hotspot), false), -10.0f, 180.0f, 1.05f, 1.05f));


hotspot.getOnClick();


}`

最佳答案

你需要重写下面的方法

@Override
public void onDidClickHotspot(PLIView view, PLIHotspot hotspot, CGPoint screenPoint,
PLPosition scene3DPoint) {

Toast.makeText(view.getActivity().getApplicationContext(),
String.format("You select the hotspot with ID %d",
hotspot.getIdentifier()), Toast.LENGTH_SHORT).show();
}

关于java - panoramagl 热点移动到下一个全景图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34245708/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com