forked from osmandapp/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
936 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import clsx from 'clsx'; | ||
import React, { useEffect, useState } from 'react'; | ||
// https://reactjsexample.com/a-lightweight-production-ready-carousel-for-react/ | ||
import Carousel from "react-multi-carousel"; | ||
import "react-multi-carousel/lib/styles.css"; | ||
|
||
export default function Screenshots({ altSectionClass }) { | ||
const responsive = { | ||
superLargeDesktop: { | ||
// the naming can be any, depends on you. | ||
breakpoint: { max: 4000, min: 2048 }, | ||
items: 5 | ||
}, | ||
desktop: { | ||
breakpoint: { max: 2048, min: 1024 }, | ||
items: 4 | ||
}, | ||
tablet: { | ||
breakpoint: { max: 1024, min: 720 }, | ||
items: 3 | ||
}, | ||
tablet: { | ||
breakpoint: { max: 720, min: 480 }, | ||
items: 2 | ||
}, | ||
mobile: { | ||
breakpoint: { max: 480, min: 0 }, | ||
items: 1 | ||
} | ||
}; | ||
let imagesAndroid = [ | ||
"a1.png", | ||
"a2.png", | ||
"a3.png", | ||
"a4.png", | ||
"a5.png", | ||
"a6.png", | ||
"a7.png", | ||
"a8.png", | ||
"a9.png", | ||
"a10.png", | ||
|
||
]; | ||
let imagesIOs = [ | ||
"i1.png", | ||
"i2.png", | ||
"i3.png", | ||
"i4.png", | ||
"i5.png", | ||
"i6.png", | ||
"i7.png", | ||
"i8.png", | ||
"i9.png", | ||
"i10.png", | ||
|
||
]; | ||
const [android, setAndroid] = useState(true); | ||
|
||
return ( | ||
<section className={clsx('section', altSectionClass)}> | ||
<div className='container'> | ||
<div className='row'> | ||
<h5 className='index-title padding-horiz--md text--left col col--4'></h5> | ||
<div className='col col--4' /> | ||
<div className='col col--4' > | ||
<ul className="tabs tabs--block"> | ||
<li className={clsx({"tabs__item": true, "flex-1": true, "tabs__item--active": android })} | ||
onClick={() => setAndroid(true)}>Android</li> | ||
<li className={clsx({ "tabs__item": true, "flex-1": true, "tabs__item--active": !android })} | ||
onClick={() => setAndroid(false)}>iOS</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<Carousel responsive={responsive} autoPlay={false} | ||
itemClass="carousel-item-padding-10-px" className='padding-vert--md padding-horiz--md'> | ||
{(android ? imagesAndroid : imagesIOs).map((e) => { | ||
return <div key={e}> | ||
<img src={require('@site/blog/2023-07-12-raster-maps/carousel/' + e).default} /> | ||
</div> | ||
})} | ||
|
||
</Carousel> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
slug: raster-maps | ||
title: Raster maps | ||
authors: eugene | ||
tags: [marketing,map,android,ios] | ||
|
||
--- | ||
|
||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
import AndroidStore from '@site/src/components/buttons/AndroidStore.mdx'; | ||
import AppleStore from '@site/src/components/buttons/AppleStore.mdx'; | ||
import LinksTelegram from '@site/src/components/_linksTelegram.mdx'; | ||
import LinksSocial from '@site/src/components/_linksSocialNetworks.mdx'; | ||
import Translate from '@site/src/components/Translate.js'; | ||
import InfoIncompleteArticle from '@site/src/components/_infoIncompleteArticle.mdx'; | ||
import ProFeature from '@site/src/components/buttons/ProFeature.mdx'; | ||
import Screenshots from './carousel/screens.js'; | ||
|
||
Hello everybody! | ||
|
||
This article is about one of the general OsmAnd killer-feature - [_Online maps_ plugin](https://osmand.net/docs/user/plugins/online-map). This Plugin allows us to enable and add other map sources for OsmAnd. All of these sources are [raster maps](https://osmand.net/docs/user/map/raster-maps). | ||
|
||
Raster maps come from various sources and they complement OpenStreetMap data, and sometimes they are the only source. [By combining map layers](https://osmand.net/docs/user/map/raster-maps#select-raster-maps), you can get the best picture on your screen: | ||
|
||
<Screenshots /> | ||
|
||
<!--truncate--> | ||
|
||
The Plugin names _Online maps_. But when you use it in OsmAnd all data will be added [to the cache](https://osmand.net/docs/user/map/raster-maps#clear-raster-map-cache) for offline use, or you can [download chosen area](https://osmand.net/docs/user/map/raster-maps#download--update-tiles). | ||
|
||
Always user can prepare and add their own Raster maps in [SQlitedb format](https://osmand.net/docs/technical/map-creation/create-offline-maps-yourself#raster-maps-advanced) or [add a new online raster map source](https://osmand.net/docs/user/map/raster-maps/#add-new-online-raster-map-source). | ||
|
||
## Source Links | ||
|
||
Except our [_Raster map list_](https://docs.osmand.net/docs/user/map/raster-maps#select-raster-maps) there are any sources with Online maps for OsmAnd. | ||
|
||
### AnyGis | ||
|
||
Project with a huge numerous of online map sources: [AnyGis](https://anygis.ru/Web/Html/Osmand_en). | ||
|
||
### OsmAnd-Rendering | ||
|
||
We said [about this project](https://osmand.net/blog/rendering#osmand-rendering) earlier when we wrote about _Vector map_ and _Map styles_. Here you can find [the list of online maps for Europe](https://github.com/OsmAnd-Rendering/Online-Maps). | ||
|
||
### StrikeLines | ||
|
||
[Here](https://strikelines.com/about-2/) you can find paid map data for fishing on the US and Cuban coasts. | ||
|
||
## Helpfull Links | ||
|
||
- [Online maps plugins](https://osmand.net/docs/user/plugins/online-map) | ||
- [Raster maps article(DOCS)](https://docs.osmand.net/docs/user/map/raster-maps) | ||
- [Metainfo](https://osmand.net/docs/technical/osmand-file-formats/osmand-metainfo) and [SQlitedb](https://osmand.net/docs/technical/osmand-file-formats/osmand-sqlite) formats | ||
- [Preparing your own maps](https://docs.osmand.net/docs/technical/map-creation/create-offline-maps-yourself/#raster-maps-advanced) | ||
- Video tutorials: [Android](https://www.youtube.com/watch?v=KBZ1DJa7RMg&ab_channel=OsmAndMaps%26Navigation), [iOS](https://www.youtube.com/watch?v=kmlgPA0W7VA&ab_channel=OsmAndMaps%26Navigation), [tutorial](https://youtu.be/2ctb_S9Fb-8?list=PL2sj0drrh65F3QZqpulFGG3uNv_5TDagl&t=1158) | ||
|
||
______________________ | ||
|
||
<LinksSocial/> | ||
<LinksTelegram/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
--- | ||
slug: osmand-android-4-5-released | ||
title: OsmAnd 4.5 (Android) | ||
authors: eugene | ||
tags: [release, android] | ||
draft: true | ||
--- | ||
|
||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
import AndroidStore from '@site/src/components/buttons/AndroidStore.mdx'; | ||
import AppleStore from '@site/src/components/buttons/AppleStore.mdx'; | ||
import LinksTelegram from '@site/src/components/_linksTelegram.mdx'; | ||
import LinksSocial from '@site/src/components/_linksSocialNetworks.mdx'; | ||
import Translate from '@site/src/components/Translate.js'; | ||
import InfoIncompleteArticle from '@site/src/components/_infoIncompleteArticle.mdx'; | ||
import ProFeature from '@site/src/components/buttons/ProFeature.mdx'; | ||
|
||
Great news for Android users! | ||
We're happy to announce the new 4.5 OsmAnd release for Android devices. | ||
|
||
<!--truncate--> | ||
|
||
* BLE/ANT+ sensors: reworked connection, writing and viewing received data to GPX. | ||
* Free backup for favorites and settings to OsmAnd Cloud. | ||
* New format for Terrain maps with 3D Relief support. | ||
* Tracks management: updated UI, added sorting, support of nested folders. | ||
* Android Auto: new start menu for access favorites, tracks and poi categories. | ||
* One list of widgets for Top/Bottom panel. | ||
* New "Train" profile, allows to calculate railways routes. | ||
* Contour lines works with any "Map source". | ||
* Expanded list of default actions for external keyboards. | ||
* Custom routing files, added options to delete or overwrite. | ||
* Added option to "Announce deviation from the route". | ||
* Start screen: added option restore OsmAnd state from file. | ||
* Added Hazardous Materials classes for North America. | ||
* Added support of "Via ferrata" for pedestrian routing. | ||
* Added "CAI" scale for difficulty classification of the routes. | ||
* Fixed per-app language selection. | ||
* Added support themed icons. | ||
* OsmAnd Cloud: added option to delete account. | ||
* Accessibility: touch target size for all buttons changed to 48 dp fixed issue with map UI that was visible for screen readers. | ||
|
||
|
||
## BLE/ANT+ sensors | ||
|
||
- Reworked connection | ||
- writing and viewing received data to GPX | ||
|
||
## Free account (Backup) | ||
|
||
Free OsmAnd Cloud account for Favorites: _OsmAnd Start_ | ||
|
||
## New format for Terrain maps | ||
|
||
- Redesign Terrain menu for Slopes and Hillshades. | ||
- Terrain data: Slopes and Hillshades can be generated from Terrain map data (paid feature) | ||
|
||
## Track management | ||
|
||
Redesign of the _Tracks > My Places_ menu | ||
- Add sorting | ||
- Add Filters | ||
- With the ability to save the filter. | ||
- Add folder options | ||
- Allow sharing folder of tracks of selection of tracks. | ||
- Allow deleting folder | ||
|
||
## Android Auto improvments | ||
|
||
- new start menu for access favorites, tracks and poi categories | ||
- Driving profile | ||
- If current profile is "Driving" (derived from Driving - Truck, Car, Motorcycle...), then AA should stay the same | ||
- If current profile is not "Driving", then it should change first in the list Driving. | ||
- fixed laggy location | ||
|
||
|
||
## Widget improvments | ||
|
||
- One list of widgets for Top/Bottom panel | ||
_______________________________________________ | ||
|
||
<LinksSocial/> | ||
<LinksTelegram/> | ||
<AndroidStore/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.