Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a322768f8a | ||
|
|
fc7bb2df9b | ||
|
|
062bb8d573 | ||
|
|
ccdea3b663 |
@@ -6,9 +6,8 @@ android:
|
|||||||
components:
|
components:
|
||||||
- platform-tools
|
- platform-tools
|
||||||
- tools
|
- tools
|
||||||
- build-tools-24.0.3
|
- build-tools-25.0.0
|
||||||
- android-24
|
- android-25
|
||||||
- extra-android-m2repository
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- GRADLE_OPTS="-Xmx2048m"
|
- GRADLE_OPTS="-Xmx2048m"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
# V™
|
# V™
|
||||||
|
|
||||||
VTM was developed within the [OpenScienceMap](http://opensciencemap.org) project.
|
VTM was developed within the [OpenScienceMap](https://github.com/opensciencemap) project.
|
||||||
|
|
||||||
**This fork continues VTM development. And provides compatibility with latest [Mapsforge](https://github.com/mapsforge/mapsforge).**
|
**This fork continues VTM development. And provides compatibility with latest [Mapsforge](https://github.com/mapsforge/mapsforge).**
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ buildscript {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:2.2.1'
|
classpath 'com.android.tools.build:gradle:2.2.2'
|
||||||
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13,7 +13,7 @@ allprojects {
|
|||||||
version = 'master-SNAPSHOT'
|
version = 'master-SNAPSHOT'
|
||||||
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
|
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
|
||||||
|
|
||||||
ext.androidBuildVersionTools = "24.0.3"
|
ext.androidBuildVersionTools = "25.0.0"
|
||||||
ext.gdxVersion = "1.9.4"
|
ext.gdxVersion = "1.9.4"
|
||||||
|
|
||||||
if (JavaVersion.current().isJava8Compatible()) {
|
if (JavaVersion.current().isJava8Compatible()) {
|
||||||
@@ -25,7 +25,7 @@ allprojects {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def androidCompileSdk() { return 24 }
|
def androidCompileSdk() { return 25 }
|
||||||
|
|
||||||
def androidMinSdk() { return 10 }
|
def androidMinSdk() { return 10 }
|
||||||
|
|
||||||
|
|||||||
@@ -2,14 +2,20 @@
|
|||||||
|
|
||||||
## Version 0.6.X
|
## Version 0.6.X
|
||||||
|
|
||||||
**Version 0.6.0-rc2 (2016-10-16)**
|
### Version 0.6.0 (2016-10-28) -- VTM revive
|
||||||
|
|
||||||
|
- Same as 0.6.0-rc3
|
||||||
|
|
||||||
|
#### Version 0.6.0-rc3 (2016-10-22)
|
||||||
|
|
||||||
|
- Minor improvements and bug fixes
|
||||||
|
|
||||||
|
#### Version 0.6.0-rc2 (2016-10-16)
|
||||||
|
|
||||||
- Location layer [#171](https://github.com/mapsforge/vtm/issues/171)
|
- Location layer [#171](https://github.com/mapsforge/vtm/issues/171)
|
||||||
- Minor improvements and bug fixes
|
- Minor improvements and bug fixes
|
||||||
|
|
||||||
**Version 0.6.0-rc1 (2016-10-08)**
|
#### Version 0.6.0-rc1 (2016-10-08)
|
||||||
|
|
||||||
**Revive of VTM vector map library**
|
|
||||||
|
|
||||||
- Render theme SVG resources [#60](https://github.com/mapsforge/vtm/issues/60)
|
- Render theme SVG resources [#60](https://github.com/mapsforge/vtm/issues/60)
|
||||||
- Mapsforge multilingual maps [#34](https://github.com/mapsforge/vtm/issues/34)
|
- Mapsforge multilingual maps [#34](https://github.com/mapsforge/vtm/issues/34)
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
* Copyright 2013 Ahmad Saleem
|
* Copyright 2013 Ahmad Saleem
|
||||||
* Copyright 2013 Hannes Janetzek
|
* Copyright 2013 Hannes Janetzek
|
||||||
* Copyright 2016 devemux86
|
* Copyright 2016 devemux86
|
||||||
|
* Copyright 2016 ocsike
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify it under the
|
* This program is free software: you can redistribute it and/or modify it under the
|
||||||
* terms of the GNU Lesser General Public License as published by the Free Software
|
* terms of the GNU Lesser General Public License as published by the Free Software
|
||||||
@@ -265,7 +266,7 @@ public class LocationRenderer extends LayerRenderer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static final String vShaderStr = ""
|
private static final String vShaderStr = ""
|
||||||
+ "precision highp float;"
|
+ "precision mediump float;"
|
||||||
+ "uniform mat4 u_mvp;"
|
+ "uniform mat4 u_mvp;"
|
||||||
+ "uniform float u_phase;"
|
+ "uniform float u_phase;"
|
||||||
+ "uniform float u_scale;"
|
+ "uniform float u_scale;"
|
||||||
@@ -277,7 +278,7 @@ public class LocationRenderer extends LayerRenderer {
|
|||||||
+ "}";
|
+ "}";
|
||||||
|
|
||||||
private static final String fShaderStr1 = ""
|
private static final String fShaderStr1 = ""
|
||||||
+ "precision highp float;"
|
+ "precision mediump float;"
|
||||||
+ "varying vec2 v_tex;"
|
+ "varying vec2 v_tex;"
|
||||||
+ "uniform float u_scale;"
|
+ "uniform float u_scale;"
|
||||||
+ "uniform float u_phase;"
|
+ "uniform float u_phase;"
|
||||||
@@ -306,7 +307,7 @@ public class LocationRenderer extends LayerRenderer {
|
|||||||
+ "}}";
|
+ "}}";
|
||||||
|
|
||||||
private static final String fShaderStr2 = ""
|
private static final String fShaderStr2 = ""
|
||||||
+ "precision highp float;"
|
+ "precision mediump float;"
|
||||||
+ "varying vec2 v_tex;"
|
+ "varying vec2 v_tex;"
|
||||||
+ "uniform float u_scale;"
|
+ "uniform float u_scale;"
|
||||||
+ "uniform float u_phase;"
|
+ "uniform float u_phase;"
|
||||||
|
|||||||
Reference in New Issue
Block a user