# C1.FlexMap.ITileSource.GetTile

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_FlexMap_ITileSource_GetTile_" data-uid="C1.FlexMap.ITileSource.GetTile*">GetTile Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_FlexMap_ITileSource_GetTile_" data-uid="C1.FlexMap.ITileSource.GetTile*"></a>
<h4 id="C1_FlexMap_ITileSource_GetTile_System_Int32_System_Int32_System_Int32_System_String__System_Object__" data-uid="C1.FlexMap.ITileSource.GetTile(System.Int32,System.Int32,System.Int32,System.String@,System.Object@)">GetTile(int, int, int, out string, out object)</h4>
<div class="markdown level1 summary"><p>Gets the uri for the specified tile.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">void GetTile(int level, int x, int y, out string uri, out object image)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Sub GetTile(level As Integer, x As Integer, y As Integer, ByRef uri As String, ByRef image As Object)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">level</span></td>
      <td><p>The zoom level of the tile.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">x</span></td>
      <td><p>The row index of the tile.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">y</span></td>
      <td><p>The column index of the tile.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">uri</span></td>
      <td><p>The uri of the tile.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
      <td><span class="parametername">image</span></td>
      <td><p>The image of the tile. The uri is ignored if the tile image is returned.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
