<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
--></style>
</head>
<body class='hmmessage'>
1<BR>
Un feliz año para todos, y espero este año se cumplan los objetivos planteados personalmente y en este equipo de openstreetmap<BR>
(¿que deseariamos tener y en que vamos/podemos a colaborar este año?)<BR>
<BR>
<BR>
2<BR>
Al comenzar a crear una version para mapsource se presentan el siguiente problema en los limites intenacionales detallado en anaranjado en la imagen, no voy a buscar solucionarlo, algo le trabaje pero aun no se soluciona en el borde con Ecuador (en el momento mi prioridad son limites departamentales, instalador para mapsource, numeracion calles bogota y algunas vias terciarias), asi que espero alguien ayude a ver y corregir lo que pasa ahi.<BR>
<A href="http://wiki.openstreetmap.org/wiki/Image:Erroresmapsource.jpg">http://wiki.openstreetmap.org/wiki/Image:Erroresmapsource.jpg</A><BR>
<BR>
les adelanto como se ve este mapa(beta) de mapsource en alto zoom con nroute(que garmin descontinuo para cobrarlo con garmin mobile ahora creo)<BR>
<BR>
<A href="http://wiki.openstreetmap.org/wiki/Image:Nroute.jpg">http://wiki.openstreetmap.org/wiki/Image:Nroute.jpg</A><BR>
<BR>
Pienso en cuanto este corregido lo de limites se podria subir una version para pruebas decente, por ahora no subo ningun instalador a la espera de definir donde se coloca (9 mb)y realizar algunas mejoras aun<BR>
<BR>
3<BR>
alguien sabe como se le pueden colocar estilos a mkgmap, en un archivo, yo se que dice en la wiki los tipos de estilo pero necesito es ver un archivo, esto para cambiar el tamaño de letras en mapsource.<BR>
<BR>
<BR>
Hasta la vista, espero seguir con tiempo, trabajo y salud colaborandoles este año<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
anexo<BR>
<BR>
script de mkgmap para instalador de mapsource con nsis<BR>
<BR>
java -Xmx512M -jar mkgmap.jar --levels=0:24,1:23,2:22,3:21,4:20,5:18,6:18,7:17 --add-pois-to-areas --net --route --gmapsupp --tdbfile --index --nsis --description="OSMCol" --series-name="OSM Ruteable Colombia 201001" colombia.osm<BR>
<BR>
script de mkgmap para instalador de mapsource sin nsis <BR>
java -Xmx512M -jar mkgmap.jar --levels=0:24,1:23,2:22,3:21,4:20,5:18,6:18,7:17 --add-pois-to-areas --net --route --gmapsupp --tdbfile --index --description="OSMCol" --series-name="OSM Ruteable Colombia 201001" colombia.osm<BR>
<BR>
<BR> <BR>
contenido del script NSIS de nullsoft instaler<BR>
<BR>!define DEFAULT_DIR "C:\Garmin\Maps\OSM map"<BR>!define INSTALLER_DESCRIPTION "OSM Colombia enruteable"<BR>!define INSTALLER_NAME "OSM Colombia"<BR>!define MAPNAME "Osmmap"<BR>!define PRODUCT_ID "1"<BR>!define REG_KEY "OSM Colombia map"<BR>
SetCompressor /SOLID lzma<BR>
; Includes<BR>!include "MUI2.nsh"<BR>
; Installer pages<BR>!insertmacro MUI_PAGE_WELCOME<BR>!insertmacro MUI_PAGE_LICENSE osmmap_license.txt<BR>!insertmacro MUI_PAGE_DIRECTORY<BR>!insertmacro MUI_PAGE_INSTFILES<BR>!insertmacro MUI_PAGE_FINISH<BR>
; Uninstaller pages<BR>!define MUI_UNPAGE_INSTFILES<BR>
!insertmacro MUI_LANGUAGE "Spanish"<BR>
Name "${INSTALLER_DESCRIPTION}"<BR>OutFile "${INSTALLER_NAME}.exe"<BR>InstallDir "${DEFAULT_DIR}"<BR>
Section "MainSection" SectionMain<BR> SetOutPath "$INSTDIR"<BR> File "${MAPNAME}.img"<BR> File "${MAPNAME}_mdr.img"<BR> File "${MAPNAME}.mdx"<BR> File "${MAPNAME}.tdb"<BR> File "63240001.img"<BR>
WriteRegBin HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}" "ID" 0000<BR> WriteRegStr HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}" "IDX" "$INSTDIR\${MAPNAME}.mdx"<BR> WriteRegStr HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}" "MDR" "$INSTDIR\${MAPNAME}_mdr.img"<BR> WriteRegStr HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}\${PRODUCT_ID}" "BMAP" "$INSTDIR\${MAPNAME}.img"<BR> WriteRegStr HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}\${PRODUCT_ID}" "LOC" "$INSTDIR"<BR> WriteRegStr HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}\${PRODUCT_ID}" "TDB" "$INSTDIR\${MAPNAME}.tdb"<BR>
WriteUninstaller "$INSTDIR\Uninstall.exe"<BR>
SectionEnd<BR>
Section "Uninstall"<BR> Delete "$INSTDIR\${MAPNAME}.img"<BR> Delete "$INSTDIR\Uninstall.exe"<BR> Delete "$INSTDIR\${MAPNAME}_mdr.img"<BR> Delete "$INSTDIR\${MAPNAME}.mdx"<BR> Delete "$INSTDIR\${MAPNAME}.tdb"<BR> Delete "$INSTDIR\63240001.img"<BR>
RmDir "$INSTDIR"<BR>
DeleteRegValue HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}" "ID"<BR> DeleteRegValue HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}" "IDX"<BR> DeleteRegValue HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}" "MDR"<BR> DeleteRegValue HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}\${PRODUCT_ID}" "BMAP"<BR> DeleteRegValue HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}\${PRODUCT_ID}" "LOC"<BR> DeleteRegValue HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}\${PRODUCT_ID}" "TDB"<BR> DeleteRegKey /IfEmpty HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}\${PRODUCT_ID}"<BR> DeleteRegKey /IfEmpty HKLM "SOFTWARE\Garmin\MapSource\Families\${REG_KEY}"<BR>
SectionEnd<BR><BR>
<BR>
<BR>
<BR>
<BR> <br /><hr />Connect to the next generation of MSN Messenger <a href='http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlmailtagline' target='_new'>Get it now! </a></body>
</html>