File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ ## Version 4.0.0
5
+
6
+ * Update tabris-plugin-maps to Tabris.js 2.2 custom widget API. This version is not compatible with Tabris.js 2.0 and 2.1 anymore.
7
+ * Support customizing the marker appearance by applying a custom image.
8
+
4
9
## Version 3.0.0
5
10
6
11
* Migrate tabris-plugin-maps to Tabris.js 2 API (breaks compatibility with Tabris.js 1.x)
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ The Tabris.js website provides detailed information on how to [integrate custom
27
27
The plugin should be added as an entry in the apps ` config.xml ` file:
28
28
29
29
``` xml
30
- <plugin name =" tabris-plugin-maps" spec =" 3 .0.0" />
30
+ <plugin name =" tabris-plugin-maps" spec =" ^4 .0.0" />
31
31
```
32
32
33
33
To fetch the latest development version use the GitHub url:
@@ -43,7 +43,7 @@ On Android a Google Maps API key has to be provided when adding the plugin to yo
43
43
The API key can be configured inside your app's ` config.xml ` :
44
44
45
45
``` xml
46
- <plugin name =" tabris-plugin-maps" spec =" 3 .0.0" >
46
+ <plugin name =" tabris-plugin-maps" spec =" ^4 .0.0" >
47
47
<variable name =" ANDROID_API_KEY" value =" $ANDROID_API_KEY" />
48
48
</plugin >
49
49
```
Original file line number Diff line number Diff line change 1
1
<?xml version =' 1.0' encoding =' utf-8' ?>
2
2
<widget xmlns =" http://www.w3.org/ns/widgets"
3
3
id =" com.eclipsesource.tabris.maps.example"
4
- version =" 3 .0.0"
4
+ version =" 4 .0.0"
5
5
android-packageName =" com.eclipsesource.tabris.maps.example"
6
6
android-versionCode =" 2" >
7
7
<name >Tabris.js Maps Plugin Example</name >
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " tabris-plugin-maps" ,
3
- "version" : " 3 .0.0" ,
3
+ "version" : " 4 .0.0" ,
4
4
"description" : " A maps widget for Tabris.js" ,
5
5
"cordova" : {
6
6
"id" : " tabris-plugin-maps" ,
Original file line number Diff line number Diff line change 2
2
<plugin xmlns =" http://apache.org/cordova/ns/plugins/1.0"
3
3
xmlns : android =" http://schemas.android.com/apk/res/android"
4
4
id =" tabris-plugin-maps"
5
- version =" 3 .0.0" >
5
+ version =" 4 .0.0" >
6
6
7
7
<name >Tabris.js Maps Plugin</name >
8
8
<description >A maps widget for Tabris.js. It is based on Google Maps on Android and MapKit on iOS.</description >
You can’t perform that action at this time.
0 commit comments