Streets Navigation Icon

streets-navigation · Map Location · 6 styles

Streets Navigation sits in the Map Location shelf of the Solar Icons library. It is one of 37 glyphs in that category and one of 1,246 icons in the library overall, each drawn on the same 24x24 grid so Streets Navigation lines up optically with everything around it. The icon is addressed in templates by the string "streets-navigation", and every style variant resolves from that single name.

In practice it stands for the idea of maps, pins, routes and geolocation. That places Streets Navigation in the Map Location family, which covers maps, pins, routes and geolocation and turns up in address pickers, delivery tracking, store locators and trip summaries. Teams building logistics, travel and local-commerce products reach for this set first. Use Streets Navigation where the label alone would be ambiguous — an icon-only button, a dense table row, a mobile tab bar — and keep an accessible name on the control, because the SVG itself is decorative.

Streets Navigation in 6 styles

Streets Navigation is available in 6 style variants: Bold, Bold Duotone, Linear, Outline, Broken and Line Duotone. Bold gives you solid filled shapes that hold their weight at 16px and read clearly against coloured backgrounds. Bold Duotone gives you a filled body with a second, lower-opacity layer that adds depth without a second colour token. Linear gives you even 1.5px strokes, the neutral default for dense interfaces and toolbars. A common pairing is Bold for the selected state and Line Duotone for the rest, so the active item reads without a colour change.

BoldStreetsNavigationBold
Bold DuotoneStreetsNavigationBoldDuotone
LinearStreetsNavigationLinear
OutlineStreetsNavigationOutline
BrokenStreetsNavigationBroken
Line DuotoneStreetsNavigationLineDuotone

How to use the streets-navigation icon in Angular

There is no sprite sheet and no runtime registry lookup over the network. Import StreetsNavigationBold from the "@rchernando/solar-icons/map-location" entry point, hand it to provideSolarIcons in your application config or in a route-level providers array, and render it with the solar-icon component. All 6 exports for streets-navigation live in that same entry point, so switching style is a one-line change.

typescript
import { StreetsNavigationBold, StreetsNavigationBoldDuotone, StreetsNavigationLinear, StreetsNavigationOutline, StreetsNavigationBroken, StreetsNavigationLineDuotone } from '@rchernando/solar-icons/map-location';
typescript
import { ApplicationConfig } from '@angular/core';
import { provideSolarIcons } from '@rchernando/solar-icons';
import { StreetsNavigationBold } from '@rchernando/solar-icons/map-location';

export const appConfig: ApplicationConfig = {
  providers: [provideSolarIcons(StreetsNavigationBold)]
};
html
<solar-icon name="streets-navigation" iconStyle="bold" size="24px" />
<solar-icon name="streets-navigation" iconStyle="bold-duotone" size="24px" />
<solar-icon name="streets-navigation" iconStyle="linear" size="24px" />
<solar-icon name="streets-navigation" iconStyle="outline" size="24px" />
<solar-icon name="streets-navigation" iconStyle="broken" size="24px" />
<solar-icon name="streets-navigation" iconStyle="line-duotone" size="24px" />

More Map Location icons

Icons drawn alongside it in Map Location include Map, Map Point Hospital, Radar, Streets Map Point, Gps, Map Point Favourite, Point On Map Perspective and Streets. They share stroke weight and corner radius with Streets Navigation, so mixing them in one toolbar stays consistent.

Browse all Map Location icons →

Icons related to Streets Navigation

If Streets Navigation is not quite the shape you want, Streets and Streets Map Point share part of its name and often work as substitutes.

Elsewhere in the library

In other corners of the library, Cart4, Feed, List Cross Minimalistic, Radial Blur, Square Arrow Down and Vinyl Record cover neighbouring ideas; the name "streets-navigation" is 18 characters long and splits into 2 tokens, which is how the explorer's search matches it.

Streets Navigation icon FAQ

How do I use the streets-navigation icon in Angular?
Import StreetsNavigationBold from "@rchernando/solar-icons/map-location", register it with provideSolarIcons(StreetsNavigationBold) and render <solar-icon name="streets-navigation" iconStyle="bold" />. No HTTP request is made — the SVG is inlined at build time.
Which styles does Streets Navigation support?
6 of them: Bold, Bold Duotone, Linear, Outline, Broken and Line Duotone. Each is a separate export, so you only ship the ones you import.
Can I change the size and colour of streets-navigation?
Yes. The size input accepts any CSS length and the SVG uses currentColor, so Streets Navigation inherits the text colour of its container — a Tailwind class such as text-violet-400 is enough.

One of 1,246 icons in the Solar Icons explorer. See also the installation guide and the styling reference.