-
-
Notifications
You must be signed in to change notification settings - Fork 854
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix lineGradient showing wrong colors (#1471)
* Fix lineGradient showing wrong colors `lineMetrics` property was missing. Fixes https://github.com/react-native-mapbox-gl/maps/issues/1272 * Add line gradient example * Re-generate documentation * Update CHANGELOG.md Co-authored-by: Kid Commit <26439946+ferdicus@users.noreply.github.com>
- Loading branch information
Showing
13 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
import React from 'react'; | ||
import MapboxGL from '@react-native-mapbox-gl/maps'; | ||
|
||
import sheet from '../../styles/sheet'; | ||
|
||
import BaseExamplePropTypes from '../common/BaseExamplePropTypes'; | ||
import Page from '../common/Page'; | ||
|
||
class GradientLine extends React.Component { | ||
static propTypes = { | ||
...BaseExamplePropTypes, | ||
}; | ||
|
||
render() { | ||
return ( | ||
<Page {...this.props}> | ||
<MapboxGL.MapView style={sheet.matchParent}> | ||
<MapboxGL.Camera centerCoordinate={[-77.035, 38.875]} zoomLevel={12} /> | ||
<MapboxGL.ShapeSource id="source1" lineMetrics={true} | ||
shape={{ | ||
type: 'Feature', | ||
geometry: { | ||
type: 'LineString', | ||
coordinates: [ | ||
[-77.044211, 38.852924], | ||
[-77.045659, 38.860158], | ||
[-77.044232, 38.862326], | ||
[-77.040879, 38.865454], | ||
[-77.039936, 38.867698], | ||
[-77.040338, 38.86943], | ||
[-77.04264, 38.872528], | ||
[-77.03696, 38.878424], | ||
[-77.032309, 38.87937], | ||
[-77.030056, 38.880945], | ||
[-77.027645, 38.881779], | ||
[-77.026946, 38.882645], | ||
[-77.026942, 38.885502], | ||
[-77.028054, 38.887449], | ||
[-77.02806, 38.892088], | ||
[-77.03364, 38.892108], | ||
[-77.033643, 38.899926], | ||
], | ||
}, | ||
}}> | ||
<MapboxGL.LineLayer id="layer1" style={{ | ||
lineColor: 'red', | ||
lineCap: "round", | ||
lineJoin: "round", | ||
lineWidth: 14, | ||
lineGradient: [ | ||
'interpolate', | ||
['linear'], | ||
['line-progress'], | ||
0, | ||
'blue', | ||
0.1, | ||
'royalblue', | ||
0.3, | ||
'cyan', | ||
0.5, | ||
'lime', | ||
0.7, | ||
'yellow', | ||
1, | ||
'red' | ||
] | ||
}} /> | ||
</MapboxGL.ShapeSource> | ||
</MapboxGL.MapView> | ||
</Page> | ||
); | ||
} | ||
} | ||
|
||
export default GradientLine; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters