Skip to content
This repository was archived by the owner on Jun 25, 2019. It is now read-only.
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
9 changes: 9 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Below is a list of people and organizations that have contributed
# to the project. Names should be added to the list like so:
#
# Name/Organization <email address>

AppTree Software, Inc <[email protected]>
Luis Andrés Jara Castillo
@nunorpg
@grepLines
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [0.0.13] - 7-18-2018

* Added polyline support. Major thanks to @LJaraCastillo
* Dart2 updates

## [0.0.12] - 4-17-2018

* Update gradle dependencies
Expand Down
3 changes: 2 additions & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ class _MyAppState extends State<MyApp> {
showUserLocation: true,
showMyLocationButton: true,
showCompassButton: true,
initialCameraPosition: new CameraPosition(new Location(45.526607443935724, -122.66731660813093), 15.0),
initialCameraPosition: new CameraPosition(
new Location(45.526607443935724, -122.66731660813093), 15.0),
hideToolbar: false,
title: "Recently Visited"),
toolbarActions: [new ToolbarAction("Close", 1)]);
Expand Down
2 changes: 2 additions & 0 deletions map_view.iml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/.dart_tool" />
<excludeFolder url="file://$MODULE_DIR$/.idea" />
<excludeFolder url="file://$MODULE_DIR$/.pub" />
<excludeFolder url="file://$MODULE_DIR$/build" />
<excludeFolder url="file://$MODULE_DIR$/example/.dart_tool" />
<excludeFolder url="file://$MODULE_DIR$/example/.pub" />
<excludeFolder url="file://$MODULE_DIR$/example/build" />
</content>
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: map_view
description: A flutter plugin for displaying native Google Maps.
version: 0.0.12
version: 0.0.13
author: AppTree Software<[email protected]>
homepage: https://github.com/apptreesoftware/flutter_google_map_view

Expand All @@ -10,7 +10,7 @@ dependencies:
sdk: flutter

environment:
sdk: '>=1.9.0 <2.0.0'
sdk: ">=2.0.0-dev.28.0 <3.0.0"

# For information on the generic Dart part of this file, see the
# following page: https://www.dartlang.org/tools/pub/pubspec
Expand Down