Share Location icon

Share Location is a Google Material Symbol from the Maps category. It's one of the 500 most used Material Symbols. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

Outlined, unfilled, weight 400

share_location_outlined_fill0_wght400.svg

Share Location icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=share_location" />

<span class="material-symbols-outlined">share_location</span>

Share Location icon in React

// With the font from the HTML tab:
export function ShareLocationIcon() {
  return (
    <span className="material-symbols-outlined">
      share_location
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import ShareLocationIcon from "@material-symbols/svg-400/outlined/share_location.svg?react";

Share Location icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">share_location</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import ShareLocationIcon from "@material-symbols/svg-400/outlined/share_location.svg?component"; -->

Share Location icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">share_location</mat-icon>

Share Location icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.share_location, fill: 0, weight: 400)

Share Location icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/share_location.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M13.05 21.95v-1.5q1.125-.15 2.188-.587T17.225 18.7l1.025 1.1q-1.15 .95-2.45 1.475T13.05 21.95Zm6.725-3.7-1.075-1.025q.675-.9 1.125-1.937t.625-2.238h1.525q-.2 1.5-.762 2.813T19.775 18.25Zm.675-7.3q-.175-1.2-.625-2.225t-1.125-1.95l1.075-1.025q.95 1.25 1.45 2.475t.75 2.725h-1.525ZM10.925 21.95Q7.1 21.525 4.563 18.688T2.025 12q0-3.85 2.538-6.687T10.925 2.05v1.5q-3.2 .425-5.3 2.825t-2.1 5.625q0 3.225 2.1 5.625t5.3 2.825v1.5Zm6.325-16.65q-.975-.675-2.037-1.112T13.1 3.55v-1.5q1.35 .2 2.675 .725t2.475 1.425l-1 1.1ZM12 17.275q-1.5-1.275-2.837-2.75T7.825 11.1q0-1.775 1.213-3.037T12 6.8q1.75 0 2.963 1.263T16.175 11.1q0 1.95-1.337 3.425T12 17.275Zm0-5.225q.475 0 .8-.325t.325-.8q0-.425-.325-.775t-.8-.35q-.475 0-.8 .35t-.325 .775q0 .475 .325 .8t.8 .325Z" />
</vector>

Share Location icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/share_location.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/share_location.svg" width="24" height="24" alt="Share Location">

Share Location icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameShare Location
Ligatureshare_location
Code pointU+F05F
CategoryMaps
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/share_location.svg, share_location-fill.svg
FlutterSymbols.share_location
LicenseApache License 2.0 (© Google LLC)

Keywords

mapstravelpointstopmapconnectpositionmarkerdestinationtrackingplacearea

Related icons