Skip to content

Commit 4dc9995

Browse files
author
Tim Matthews
committedNov 22, 2016
Merge commit '3d28a7d9fd005d59219668cf61177fe574170b84'
* commit '3d28a7d9fd005d59219668cf61177fe574170b84': (24 commits) examples-setup.md: update android instructions (react-native-maps#743) add example for overlay overpress and docs iOS google maps custom tile support (react-native-maps#770) [Docs] Fix capitalisation of Xcode and CocoaPods (react-native-maps#749) Implements animateToRegion to Google Maps iOS (react-native-maps#779) [RN][iOS][google] Set region only when view has width&height - Fix type issue in AIRMapManager - Setup Gemfile in example/ios dir to avoid problems with different versions of cocoapods - Update examples-setup.md to use bundler - Change MapView so that we only set the native region prop when there is a width and height. GoogleMaps iOS requires the width and height to properly calculate the map zoom level. updates [marker flicker] Fix flicker of map pins on state change (react-native-maps#728) add onPress for polygons and polylines on iOS and Android Use latest Google Play Services (react-native-maps#731) Update installation.md (react-native-maps#742) Add latest patch releases to the changelog (react-native-maps#752) [ios][google] implement fitToSuppliedMarkers and fitToCoordinates (react-native-maps#750) If we've disabled scrolling within the map, then don't capture the touch events (react-native-maps#664) Fix dynamic imageSrc removal, fix flicker in react-native-maps#738 (react-native-maps#737) Fix Anchor point on Google Maps iOS Added ios google maps circle support Added google map type only check Fixed typo in google maps podspec Added ios google maps polygon, polyline, maptype support ...
2 parents c07a062 + 3d28a7d commit 4dc9995

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1291
-263
lines changed
 

‎CHANGELOG.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,42 @@
2929
[#675](https://github.com/airbnb/react-native-maps/pull/675)
3030
(@mlanter)
3131

32+
## 0.10.4 (October 31, 2016)
33+
34+
### Patches
35+
36+
* [iOS] implement fitToSuppliedMarkers and fitToCoordinates for google maps
37+
[#750](https://github.com/airbnb/react-native-maps/pull/750)
38+
(@gilbox)
39+
* [android] If we've disabled scrolling within the map, then don't capture the touch events
40+
[#664](https://github.com/airbnb/react-native-maps/pull/664)
41+
(@mikelambert)
42+
* [iOS] Fix Anchor point on Google Maps iOS
43+
[#734](https://github.com/airbnb/react-native-maps/pull/734)
44+
(@btoueg)
45+
* [iOS] Added showsUserLocation property support for Google Maps
46+
[#721](https://github.com/airbnb/react-native-maps/pull/721)
47+
(@julien-rodrigues)
48+
* [iOS][android] Add support for setting zIndex on markers
49+
[#675](https://github.com/airbnb/react-native-maps/pull/675)
50+
(@mlanter)
51+
* [android] Add parameter to disable the moving on marker press
52+
[#676](https://github.com/airbnb/react-native-maps/pull/676)
53+
(@mlanter)
54+
* NOTE: v0.10.3 was not published
55+
56+
## 0.10.2 (October 19, 2016)
57+
58+
### Patches
59+
60+
* [android] Fixes crash during Activity onPause() (fixes #414)
61+
[#694](https://github.com/airbnb/react-native-maps/pull/694)
62+
(@felipecsl)
3263

3364
## 0.10.1 (October 10, 2016)
3465

66+
This release fixes issue [#656](https://github.com/airbnb/react-native-maps/issues/656)
67+
3568
### Patches
3669

3770
* [android] fix gradle build setup for explorer, bump to gradle 2.2.0
@@ -40,7 +73,6 @@
4073
* [android] fix getAirMapName to fix ref-based commands
4174
[#665](https://github.com/airbnb/react-native-maps/pull/665)
4275
(@gilbox)
43-
* Hopefully this release will fix issue [#656](https://github.com/airbnb/react-native-maps/issues/656)
4476

4577
## 0.10.0 (October 5, 2016)
4678

‎README.md

+14-15
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ Since react-native 0.25.0, `React` should be required from `node_modules`.
2222
React Native versions from 0.18 should be working out of the box, for lower
2323
versions you should add `react` as a dependency in your `package.json`.
2424

25+
## Component API
26+
27+
[`<MapView />` Component API](docs/mapview.md)
28+
29+
[`<MapView.Marker />` Component API](docs/marker.md)
30+
31+
[`<MapView.Callout />` Component API](docs/callout.md)
32+
33+
[`<MapView.Polygon />` Component API](docs/polygon.md)
34+
35+
[`<MapView.Polyline />` Component API](docs/polyline.md)
36+
37+
[`<MapView.Circle />` Component API](docs/circle.md)
38+
2539
## General Usage
2640

2741
```js
@@ -272,21 +286,6 @@ Enable lite mode on Android with `liteMode` prop. Ideal when having multiple map
272286

273287
![](http://i.giphy.com/qZ2lAf18s89na.gif)
274288

275-
## Component API
276-
277-
[`<MapView />` Component API](docs/mapview.md)
278-
279-
[`<MapView.Marker />` Component API](docs/marker.md)
280-
281-
[`<MapView.Callout />` Component API](docs/callout.md)
282-
283-
[`<MapView.Polygon />` Component API](docs/polygon.md)
284-
285-
[`<MapView.Polyline />` Component API](docs/polyline.md)
286-
287-
[`<MapView.Circle />` Component API](docs/circle.md)
288-
289-
290289
### Animated Region
291290

292291
The MapView can accept an `MapView.AnimatedRegion` value as its `region` prop. This allows you to utilize the Animated API to control the map's center and zoom.

0 commit comments

Comments
 (0)
Please sign in to comment.