首页 > TAG信息列表 > google-places-api

android-在ViewPager内部未触发SupportPlaceAutocompleteFragment的OnPlaceSelectedListener

我的应用程序有一个带有viewPager和4个片段的活动. 在一个片段中,我添加了一个Google SupportPlaceAutocompleteFragment和 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = in

android-Google Place Picker小部件不起作用

根据This Official Post 我正在按照以下步骤将Place Picker UI对话框与Map集成在一起. 启动器代码 PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder(); startActivityForResult(builder.build(this), PLACE_PICKER_REQUEST); 内部onActivityResult()

javascript-Google通过Places Web Service取消了引荐来源网址限制的API密钥

我最近收到了Google的一封电子邮件,通知我: You are receiving this email because your project is using Places Web Service API with an API Key with HTTP referer restrictions. (…) starting January 31 2018 the Places Web Service API will no longer accept AP

android-Google Places API自动完成获取城市列表

我正在我的Android应用程序上实现google的位置自动填充功能,并且该功能可以显示每个相似的位置,但是只有当用户尝试搜索任何内容时,我如何才能获得城市建议. 我搜索了很多我找不到Android地方自动完成的类似问题. 我已经从Google的示例中实现了PlaceAutocompleteAdapter,这看起来像

javascript-MapsApi-Google Maps Place服务出现奇怪的错误

Google Maps Place服务无法正常工作并给出下一个错误 Uncaught Error: Property radius is invalid. A possible cause is that the value conflicts with other properties. 码 var service = new google.maps.places.PlacesService(map); var request = { location: cent

android-如何为Google Places API的getAutocompletePredictions()方法提供合理的默认范围?

我正在使用这种方法: Places.GeoDataApi.getAutocompletePredictions(googleApiClient, query, bounds, AutocompleteFilter.create(null)) 它需要一个带有东北和西南LatLng点的LatLntBounds对象作为查询的范围,但是我不想提供任何对象. 尝试使用null,但得到了null指针异常 尝试过

android-GeoDataApi.getAutocompletePredictions()中LatLngBounds的用途是什么?

Google Places Autocomplete API中使用的LatLngBounds对象是什么? ..和/或它的意思是: biasing the results to a specific area specified by latitude and longitude bounds ? 在Google地方信息自动填充文档中,它表示要传入LatLngBounds和AutocompleteFilter. PendingResult<Aut

java-Places.GeoDataApi.getAutocompletePredictions

我在使用Android Google Places API时遇到问题-自动完成功能. 我正在尝试使用Places.GeoDataApi.getAutocompletePredictions()方法获取placeId,但是,它不起作用.(输出甚至不显示“无法获取值”) 有人可以帮我吗? 这是我的Java代码: PendingResult<AutocompletePredictionBuffer> r

android-在没有Google Maps的情况下使用Google Places API,但在OSM地图上显示所选结果

我们想在我们的android应用程序中使用Google Maps API和Places Autocomplete API.在使用之前,我们希望明确您使用这些API的“使用条款”.我们检查了Google文档.但是我们仍然有一些查询,如下所示: >我们要使用2个全屏视图.在第一个视图中,将在该搜索按钮上方显示OpenStreet地图.如果

如何在Android中为Google商家信息设置语言?

我想设置显示Google Places API结果的语言.我想要我可以使用以下网址得到的结果: https://maps.googleapis.com/maps/api/place/details/json?placeid=A_PLACE_ID&key=MY_EY&language=el 在android中,我得到这样的地方详细信息: PendingResult<PlaceBuffer> placeResult = Places

Android版Places API:从Place.getAddress()获取地址行

在我的Android应用中,我使用Geocoder.getFromLocation()找到位置的地址.我可以使用Address.getAddressLine()获取一个Address对象并获取地址的地址线. 我只对第一个地址行感兴趣,可以通过Address.getAddressLine(0)轻松获得它. 此外,应用程序允许用户使用PlaceAutocomplete选择位置

ANDROID PLACE_PICKER(builder.build(上下文)

基本上,我正在尝试为Android实现PLACE_PICKER,并且在这里遇到了这个令人困惑的错误: int PLACE_PICKER_REQUEST = 1; PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder(); Context context = getApplicationContext(); startActivityForResult(

如何在android中的地方autocompletefragment中更改文本大小?

我正在使用谷歌在我正在进行的项目中提供的PlaceAutocompleteFragment.但问题是我需要显示我从自动完成小部件中选择的地名,但是整个文本没有显示,因为小部件中的默认文本大小太大.那么,有没有什么方法可以在不创建我自己的自定义搜索UI的情况下更改PlaceAutocompleteFragment中的

android – 将PlaceAutocompleteFragment添加到片段抛出错误

我已在活动中实施了PlaceAutocompleteFragment,并且正在成功运作.但是如何在android中的片段中实现相同的? 我已经实现了像这样的placeautocomplete片段 PlaceAutocompleteFragment autocompleteFragment1 = (PlaceAutocompleteFragment) getFragmentManager().findFr

javascript – 触发Google商家信息自动填充功能

我正在尝试附加虚拟键盘以绑定到Google地方自动填充输入. 如果我在输入中实际输入一个字母,则Google支持的下拉列表会根据地图的居中位置显示自动填充预测.如果单击虚拟键盘键,则输入会正确更新,但不会更新自动完成预测. 我试图使用虚拟键盘更改回调来触发“keyup”(stackoverflow

如何在Android谷歌地图中显示ATM,医院等附近的地方?

如何显示附近的地方和在Android谷歌地图中放置ATM,医院,餐馆等详细信息 这是我使用的链接: Showing nearby places & place details using Google Places & Maps API 我可以获取当前位置,但附近的地方没有显示.我的logcat中也没有出现任何错误解决方法:您可以使用Google Place API获

javascript – Google自动填充API – 格式输出结果

我正在尝试实施Google Places API,所以这是我的代码: <!DOCTYPE html> <html> <head> <script src="http://codeorigin.jquery.com/jquery-1.10.2.min.js"></script> <script src="//maps.googleapis.com/maps/api/js?v=3.exp&

Google Places API for Android地方选择器不起作用

我无法在我的应用中使用地方选择器. API工作然后停止了一天没有任何解释.选择器显示很短的时间然后只是关闭,没有例外,日志中没有任何内容.使用requestCode = 1,resultCode = 2(错误代码)并且没有数据调用onActivityResult函数.来自谷歌的示例代码做同样的事情.我已经尝试了一切来

javascript – Google的Places API和JQuery请求 – Access http:// localhost不允许使用Access-Control-Allow-Origi

我正在为一个项目做一些测试,我想到的是涉及到附近的地方.所以我跟那个大家伙一起开始搞乱Google的Places Api.我正在使用带有openstreet瓷砖的传单来制作我的地图.现在一切都很好,直到我尝试使用dang的东西. var lat = coords.lat; var lng = coords.lng; var apiUrl = "https://

javascript – 如何将Google Places API与搜索按钮结合使用?

我在我的项目中使用Google Places API.当我在文本框中输入一些输入并在键盘上点击“输入”时它工作正常.它显示了结果. 但是,我想在文本框旁边放置搜索按钮,当我按下搜索按钮时,应显示结果. 这是我的初始化功能. function initialize() { ... google.maps.event.addListener(s

android – 自动填充Google商家信息示例

我正在尝试运行Google Place代码示例,但我无法执行此操作. 我收到错误消息,如: Error getting autocomplete prediction API call: Status{statusCode=TIMEOUT, resolution=null} 我将Google Map V2 ApiKey添加到Manifest,并使用正确的证书对应用程序进行了签名,因此密钥似乎可以

错误:java.lang.IllegalStateException:没有包含的点

尝试在地图上搜索地点时出现此错误.我在搜索时尝试了其他解决方案,但没有运气. java.lang.IllegalStateException: no included points 在这一行:LatLngBounds.Builder builder = new LatLngBounds.Builder(); 我正在使用的代码: try { JSONObject j

android – 在Fragment中使用GoogleApiClient对executePendingTransactions进行递归输入

我正在尝试在我的应用中使用Place Autocomplete API.我有一个主要活动.我有一个片段,它是MainActivity的一部分.在这个Fragment上的OnViewCreated()中. private void rebuildGoogleApiClient() { // When we build the GoogleApiClient we specify where connected and conne

不推荐使用getPlaceDetectionClient(android.app.Activity,com.google.android.gms.location.places.PlacesOptio

Android Studio 3.1.4 placeDetectionClient = Places.getPlaceDetectionClient(this, null); 给出错误: getPlaceDetectionClient(android.app.Activity, com.google.android.gms.location.places.PlacesOptions) is deprecated 任何想法使用什么代替?谢谢解决方法:你读过API re

Android Google Place Picker在签名APK中工作,但在Live应用中无效

我有一个应用程序,其中我使用了Google Place Picker.我面临着一个非常奇怪的问题.当我使用我的应用程序的密钥库创建签名APK时,Place Picker工作得非常好.我通过Google PlayStore上传了相同的APK.当我打开Place Picker时它会自动关闭.我已经在网上阅读了很多评论,也在SO中.但是我无