Skip to content

Commit

Permalink
Merge pull request #1 from johnpryan/master
Browse files Browse the repository at this point in the history
Get latest version.
  • Loading branch information
matthiasdittmer authored Apr 9, 2020
2 parents 646ba77 + ac52f28 commit 27a687a
Show file tree
Hide file tree
Showing 49 changed files with 2,541 additions and 560 deletions.
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Declare files that will always have CRLF line endings on checkout.
*.dart text eol=lf
*.yaml text eol=lf
*.md text eol=lf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
33 changes: 15 additions & 18 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
.idea
.dart_tool/
.DS_Store
.atom/
.idea
.packages
.pub/
build/
ios/.generated/
packages
.packages
pubspec.lock
.flutter-plugins
.vscode/
Expand All @@ -17,14 +11,17 @@ GeneratedPluginRegistrant.java
ios/Flutter/Generated.xcconfig

# Temp files in Example
/flutter_map_example/.DS_Store
/flutter_map_example/.atom/
/flutter_map_example/.idea
/flutter_map_example/.packages
/flutter_map_example/.pub/
/flutter_map_example/build/
/flutter_map_example/ios/.generated/
/flutter_map_example/packages
/flutter_map_example/pubspec.lock
/flutter_map_example/.flutter-plugins
/flutter_map_example/.vscode/
/example/.DS_Store
/example/.atom/
/example/.idea
/example/.packages
/example/.pub/
/example/build/
/example/ios/.generated/
/example/packages
/example/pubspec.lock
/example/.flutter-plugins
/example/.vscode/
/example/.flutter-plugins-dependencies
/example/ios/Flutter/flutter_export_environment.sh
/example/ios/Flutter/Flutter.podspec
86 changes: 86 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,94 @@
## [0.9.0] - 4/6/2020
- Improve tile management (#572) - This is a huge improvement aligns
tile rendering with Leaflet's behavior.
- Wms Support (#500)
- Update README for open street maps (#495)
- Support custom CRS (#529)
- Proj4dart update (#541)
- Fix changelog (#511)
- Fix multiple origins bouncing (#548)
- Add android permissions instructions to README (#569)
- Add an option for gapless playback on OverlayImage (#566)
- Add flutter_map_tappable_polyline plugin to README (#563)
- Move plugins to front of checks so they can override defaults (#555)
- Support holed polygons (#526)

**Big** thanks to @maRci002 for this release! See pull request #572 for details.

Thanks to @marCi002, @bugDim88, @buggamer, @pumano, @fegyi001, @jpeiffer,
@syonip, @pento, @tuarrep, and @ibrierley for this release!

## [0.8.2] - 1/7/2020
- Add polyline with gradient (#452)

Thanks to @SebWojd for this release!

## [0.8.1] - 1/3/2020
- Add ZoomButtonsPlugin (#487)

Thanks to @moovida for this release!

## [0.8.0] - 12/16/2019
Added Flutter 1.12 support

- Polygon Culling (#449)
- fix marker anchor sample (#448, #427)
- upgrade imageloader for Flutter 1.12 (#478)
- Tidying up project files (#469)

Thanks to @raacker, @Varuni-Punchihewa, @wmcshane, @domesticmouse, and @kimlet
for this release!

## [0.7.3] - 10/3/2019
- Update changelog (#408)
- Readability improvements (#410)
- add double-tap-hold zoom (#393)
- Fix Unsupported Operation and add missing onTap and onLongPress methods (#436)
- Fix error when unproject bottomLeft or topRight and lat are < -90 or > 90 or
lng are < -180 or > 180
- Fix/transparent polyline (#407)

Thanks to @yywwuing, @GregorySech, @avimak, @kengu, @lpongetti, and @2ZeroSix
for this release!

## [0.7.2] - 8/30/2019
- expose TileProvider.getTileUrl (#401)

Thanks to @kengu for this release!
## [0.7.1] - 8/28/2019
- upgrade to cached_network_image ^1.1.0 (#358)
- documentation (#400)
- remove isUserGesture (#389)
- fix initialization exception (#379)

Thanks to @escamoteur, @wmcschane, and @GregorySech for this release!

## [0.7.0+2] - 7/31/2019
- Fix OverlayImage with transparency (#382)

Thanks to @4kssoft for this release!

## [0.7.0+1] - 7/30/2019
- update MapState options when FlutterMap widget options change (#380)

## [0.7.0] - 7/27/2019
- compatability with flutter's stable and master channels
- add scalebar (#356)
- add rotation (#359)
- fix OverlayLayer bug (#360)
- fix rotation pan issue (#363, #365)

Thanks to @kimlet, @escamoteur, @4kssoft for this release!

## [0.5.6] - 7/9/2019
- fix compatibility with flutter 1.7.8 (stable) (#296)

Thanks to @MichalMisiaszek for the heads up and @slightfoot for help with
upgrading (#296)!

## [0.6.x] - 6/7/2019
- temporary releases compatable with early flutter releases

## [0.5.4] - 6/7/2019
- fix markers on edge of screen disappearing (#313)
- dart analysis fixes (#300)
Expand Down
4 changes: 3 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Copyright (c) 2019, flutter_map authors
Copyright (c) 2020, the flutter_map authors
Copyright (c) 2010-2019, Vladimir Agafonkin
Copyright (c) 2010-2011, CloudMade
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
Loading

0 comments on commit 27a687a

Please sign in to comment.