-
Updated
Jun 1, 2020 - Dart
amap
Here are 112 public repositories matching this topic...
-
Updated
May 29, 2020 - TypeScript
⚠️ "rnpm"弃用,下个版本不在支持
react-native-cli: 2.0.1
react-native: 0.61.4
启动服务时提示如下信息:
react-native start
warn The following packages use deprecated "rnpm" config that will stop working from next release:
- react-native-amap-geolocation: https://github.com/qiuxiang/react-native-amap-geolocation#readme
- react-native-amap3d: https://github.com/qiuxiang/react-native-amap3d#readme
Please notify their maint
可以支持地址搜索嘛?有无相关组件?
-
Updated
Mar 17, 2020 - JavaScript
-
Updated
May 22, 2020 - HTML
import { Geolocation } from "react-native-amap-geolocation";
const geolocationInit = async () => {
await Geolocation.init({
android: "key"
});
Geolocation.setOptions({
interval: 3000,
distanceFilter: 20
});
Geolocation.addLocationListener(location => {
console.log("aaaaaaaaaaaaaaaaaaaaaaaa>" + location);
});
}
compone
-
Updated
Aug 30, 2019 - Objective-C
In the docs, translated, I see:
The particle Field and Vector Vector calculation code are extracted for easy extended calculation, such as using webworker or gpu.js acceleration.
Can we get an example of GPU.js usage?
-
Updated
Mar 20, 2017 - Objective-C
-
Updated
Jul 4, 2017 - Objective-C
-
Updated
Jun 1, 2020 - JavaScript
-
Updated
Mar 13, 2018 - Java
-
Updated
Dec 24, 2018 - Objective-C
-
Updated
Sep 19, 2017 - TypeScript
-
Updated
Jan 4, 2020 - Java
-
Updated
May 21, 2020 - Java
-
Updated
Jan 22, 2018 - Objective-C
-
Updated
Jun 1, 2020 - JavaScript
-
Updated
May 26, 2020
Improve this page
Add a description, image, and links to the amap topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the amap topic, visit your repo's landing page and select "manage topics."



怎么在父组件中传递值给的search-box组件中的input?
VueAMap 版本:0.5.7
OS/Browsers version: Chrome
Vue 版本:2.5.2
预期 : 想在父组件中使用v-if控制子组件的展示与否,并在子组件初始化完成后,子组件search-box组件的input的value为父组件传递的值,如果可以的话默认搜索并展示结果。
实际:
feature request :
Parent.vue
`<map-component v-if="showMap" @on-click="getAddress" :searchValue = "address">
...
data:function(){