Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Release android v5.0.2 #8629

Merged
merged 4 commits into from
Apr 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions platform/android/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Mapbox welcomes participation and contributions from everyone. If you'd like to

5.0.2 is a patch release that contains the following changes:

* Binary shader caching [#8604](https://github.com/mapbox/mapbox-gl-native/pull/8604)
* Fix resource transform callback [#8582](https://github.com/mapbox/mapbox-gl-native/pull/8582)
* Restore onTouch behaviour to 4.x version [#8585](https://github.com/mapbox/mapbox-gl-native/pull/8585)
* Restore anchoring after updating MarkerView Icon [#8519](https://github.com/mapbox/mapbox-gl-native/pull/8519)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public Builder target(LatLng location) {
* Set the tilt in degrees
* <p>
* value is clamped to 0 and 60.
* <p/>
* </p>
*
* @param tilt Tilt value
* @return Builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@
/**
* Manages locational updates. Contains methods to register and unregister location listeners.
* <ul>
* <li>You can register a {@link LocationEngineListener} with
* {@link #addLocationEngineListener(LocationEngineListener)} to receive
* location updates.</li>
* <li> You can unregister a {@link LocationEngineListener} with
* {@link #removeLocationEngineListener(LocationEngineListener)} to stop receiving location updates.</li>
* <li>You can register a LocationEngineListener with LocationSource#addLocationEngineListener(LocationEngineListener)
* to receive location updates.</li>
* <li> You can unregister a LocationEngineListener with
* LocationEngine#removeLocationEngineListener(LocationEngineListener)} to stop receiving location updates.</li>
* </ul>
* <p>
* Note: If registering a listener in your Activity.onStart() implementation, you should unregister it in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public GeoJsonSource(String id) {
}

/**
* Create an empty GeoJsonSource with non-default {@link GeoJsonOptions}
* Create an empty GeoJsonSource with non-default GeoJsonOptions.
*
* @param id the source id
* @param options options
Expand All @@ -67,7 +67,7 @@ public GeoJsonSource(String id, String geoJson) {
}

/**
* Create a GeoJsonSource from a raw json string and non-default {@link GeoJsonOptions}
* Create a GeoJsonSource from a raw json string and non-default GeoJsonOptions
*
* @param id the source id
* @param geoJson raw Json body
Expand All @@ -93,7 +93,7 @@ public GeoJsonSource(String id, URL url) {
}

/**
* Create a GeoJsonSource from a remote geo json file and non-default {@link GeoJsonOptions}
* Create a GeoJsonSource from a remote geo json file and non-default GeoJsonOptions
*
* @param id the source id
* @param url remote json file
Expand All @@ -105,7 +105,7 @@ public GeoJsonSource(String id, URL url, GeoJsonOptions options) {
}

/**
* Create a GeoJsonSource from a {@link FeatureCollection}
* Create a GeoJsonSource from a FeatureCollection.
*
* @param id the source id
* @param features the features
Expand All @@ -116,7 +116,7 @@ public GeoJsonSource(String id, FeatureCollection features) {
}

/**
* Create a GeoJsonSource from a {@link FeatureCollection} and non-default {@link GeoJsonOptions}
* Create a GeoJsonSource from a FeatureCollection and non-default GeoJsonOptions.
*
* @param id the source id
* @param features the features
Expand All @@ -130,7 +130,7 @@ public GeoJsonSource(String id, FeatureCollection features, GeoJsonOptions optio
/**
* Updates the GeoJson
*
* @param features the GeoJSON {@link FeatureCollection}
* @param features the GeoJSON FeatureCollection
*/
public void setGeoJson(FeatureCollection features) {
checkValidity();
Expand Down