gpt4 book ai didi

android - 在 skobbler 3.0 中如何在 map 上的注释中设置自定义图像

转载 作者:太空狗 更新时间:2023-10-29 14:46:56 24 4
gpt4 key购买 nike

新库,类SKAnnotation没有方法:

annotation.setImagePath(mImagePath);

最佳答案

请使用如下代码

SKAnnotation annotation = new SKAnnotation(itemId);
annotation.setLocation(new SKCoordinate(lat, lon));
SKAnnotationView annotationView = new SKAnnotationView();
RelativeLayout customView = (RelativeLayout) ((LayoutInflater)getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(
R.layout.layout_custom_pin, null, false);
annotationView.setView(customView);
annotation.setAnnotationView(annotationView);
mapView.addAnnotation(annotation, SKAnimationSettings.ANIMATION_NONE);

关于android - 在 skobbler 3.0 中如何在 map 上的注释中设置自定义图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39041405/

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