Questions tagged «google-maps»

Google Maps是Google提供的桌面和移动网络地图服务应用程序和技术,可提供卫星图像,街道地图和街景视图的透视图。还支持通过Google Maps API嵌入第三方网站的地图,以及面向全球许多国家的城市企业和其他组织的定位器。


5
GPS是否需要互联网?
在我可以读取我的应用程序中的当前位置(国家,城市,地区等)之前,是否需要同时打开Internet和GPS开启?如果是这样,那么还有其他方法只能从GPS获取位置吗?由于互联网的可用性是一个问题。

6
Android Google Maps v2:如何使用多行代码段添加标记?
有人知道如何在Google Maps标记中添加多行代码段吗?那是我添加标记的代码: map.getMap().addMarker(new MarkerOptions() .position(latLng()).snippet(snippetText) .title(header).icon(icon)); 我希望代码段看起来像这样: | HEADER | |foo | |bar | 但是,当我尝试将snippetText设置为“ foo \ n bar”时,我看到的只是,foo bar而且我不知道如何使其变为多行。你能帮助我吗?

4
如何在地图片段API v2布局顶部添加按钮
我正在尝试使用API​​ v2在android中显示地图。 我想要UI这样的东西。但是,每当我尝试在布局中添加按钮时,它都不会反映在输出中,因此 我能够获得没有按钮的地图。我需要按钮来与地图集成,例如 Mylayout.xml的以下代码: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MapActivity" > <RelativeLayout android:layout_width="match_parent" android:layout_height="48dp"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <RadioGroup android:id="@+id/radio_group_list_selector" android:layout_width="0dp" android:layout_height="match_parent" android:layout_gravity="center_horizontal|center_vertical" android:gravity="center_horizontal" android:orientation="horizontal" android:layout_weight="1" > <RadioButton android:id="@+id/radioPopular" android:layout_width="0dp" android:layout_height="match_parent" android:gravity="center_horizontal|center_vertical" android:text="@string/Popular" android:layout_weight="1" android:button="@null" android:background="@drawable/shape_radiobutton" android:layout_marginBottom="4dp" android:layout_marginTop="4dp" android:layout_marginLeft="4dp" android:textColor="@drawable/textcolor_radiobutton" /> <View android:id="@+id/VerticalLine" android:layout_width="1dip" android:layout_height="wrap_content" android:layout_marginBottom="4dip" android:layout_marginTop="4dip" android:background="#aaa" /> …

10
在给定图片上将long / lat转换为像素x / y
我有莫斯科的城市地图。我们修改了带有某些艺术元素的Google Maps图像,但GPS坐标和像素之间的关系保持不变。 问题:如何将GPS坐标从我们拥有的各种数据点转换为图像中的像素坐标? 理想情况下,我可以使用Javascript执行此操作,但PHP可以。 我知道在小范围内(例如在城市范围内),它就足够简单(有必要了解哪些地理坐标具有图片角之一,然后学习轴上图片中地理坐标中一个像素的“价格”)分别是OX和OY)。 但是在大范围(国家范围)上,一个像素的“价格”将不是一个常数,并且变化很大,因此上述方法无法应用。 如何在国家范围内解决问题? 更新: 我没有使用API​​ Google Maps,我只有:对象的地理坐标(它们来自google maps),我的站点上仍然有一张简单的图片*。gif,我必须在其中绘制一个对应的地理坐标点。

5
Flutter Google Maps,尝试创建已创建的平台视图,视图ID:0
第一次,谷歌地图抖动,加载完美,但当热重启时,它进入平台异常 google_maps_flutter:^ 0.5.21 + 15 Github [google_maps_flutter]试图创建一个已经创建的平台视图#45695 [ERROR:flutter/lib/ui/ui_dart_state.cc(157)] Unhandled Exception: PlatformException(error, java.lang.IllegalStateException: Trying to create an already created platform view, view id: 0 扑医生-v [✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Linux, locale en_IN) • Flutter version 1.12.13+hotfix.5 at /home/asus/Documents/Flutter_SDK/flutter • Framework revision 27321ebbad (2 weeks ago), 2019-12-10 18:15:01 -0800 • …

1
如何在Google地图中使用标记和折线的中点绘制多边形
我想在地图上绘制自由手多边形。我从简单的Google地图开始,然后绘制多边形,它可以正常工作,但现在我正在寻找用户如何通过单击地图上的点并在地图上的点中间拉伸标记来绘制多边形多边形。 现在我的多边形地图看起来像: 我想实现: 这是我的代码: public class MapActivity extends FragmentActivity implements OnMapReadyCallback { private GoogleMap mMap; Button save_field; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_map); // Retrieve the content view that renders the map. SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map); mapFragment.getMapAsync(this); FrameLayout Frame_map = (FrameLayout) findViewById(R.id.frame_map); Button btn_draw_State = (Button) …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.