Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Rotate Clockwise: CTRL + D
Camera Altitude increase: CTRL + W
Camera Altitude decrease: CTRL + S
Can't find anything on zoom.
Devs, please
What makes it fast is you zoom out to bird's eye view of map, hold the mouse cursor over any part of the active map you want to zoom in to, and zoom in with mouse wheel. It zooms in to where the mouse cursor is. You can do rotations by pressing that mouse wheel and rotating. The more I use it, the easier it becomes.
Someone on the steam community posted a keyboard mapping image that looks useful.
https://steamcommunity.com/sharedfiles/filedetails/?id=2731450059
Additionally, you might try AutoHotKey (it's free, and open source). It allows you to script keyboard actions. https://www.autohotkey.com/
I did this test script using the pageup and page down keys to replace middle mouse scroll. It works, but not as smooth as just using the mouse scroll wheel.
Script Example:
PgUp::
{
MouseClick("wheelup")
}
PgDn::
{
MouseClick("wheeldown")
}